lorran_alves
(usa Outra)
Enviado em 05/09/2014 - 12:03h
Boa tarde Pessoal,
Estou tentando rodar um schell script para fazer um levantamento do meu ambiente ORACLE
e está dando o seguinte erro:
: No such file or directory#!/bin/sh
: command not foundline 2:
: command not foundline 5:
'/levantamento.sh: line 17: syntax error near unexpected token `do
'/levantamento.sh: line 17: `do
Alguem saberia me dizer o que está errado?
#!/bin/sh
dmy=`date +%d%m%y_%H%M`
dat=`date +%d%m%y`
if [ "$1" != "" ]; then
LISTASID=$1
else
LISTASID=`ps -ef | grep ^"$USER " | grep _smon | grep -v grep | rev | cut -d_ -f1 | rev | grep -v ASM`
if [ "$LISTASID" = "" ]; then
LISTASID=`ps -ef | grep "$USER " | grep _smon | grep -v grep | rev | cut -d_ -f1 | rev | grep -v ASM`
fi
fi
for sid in $LISTASID
do
export ORACLE_SID=$sid
(
echo
echo ------------------------------------------------------------------
echo
echo ---- RELATORIO DE ANALISE E DOCUMENTACAO DE AMBIENTE ----
echo
echo ------------------------------------------------------------------