if [ ! -f ./* ]; then
for files in $(find . -maxdepth 1 -type f); do
echo $files
else
echo Nothing here
fi
Returns
syntax error near unexpected token `else'
New to this. Can anyone point me to what I did wrong?
Returns
New to this. Can anyone point me to what I did wrong? |
||||
| show 1 more comment |
|
You forgot
|
|||
|
|
|
The reason you get a syntax error is because you are not ending the loop with the "done" statement. You should be using a while loop, instead of a for loop in this case, as the for loop will break if any of the filenames contain spaces or newlines. Also, the test command you have issued will also give a syntax error if the glob expands to multiple files.
Here is a better way to check if the directory contains any files:
Also, you could simply replace the while loop with find -print if you have GNU find:
|
|||
|
|
|
The syntax for "for" is for: for NAME [in WORDS ... ;] do COMMANDS; done You are missing the "done" Try
BTW, did you mean echo with lowercase rather than ECHO? |
|||
|
New to this.cut me some slack. nvr wrote shell scripts until yesterday cause my boss needs a script made on a server and the person who originally does it quit. I'm trying here =/ – Mechaflash Jan 26 '12 at 19:32