How do you solve this in Shell Scripting?
Syntax error: word unexpected (expecting "do")
Here is my code
I want to look through all the folders in the current directory using Shell Script.
for d in */ ; do
[ -L "${d%/}" ] && continue
echo "$d"
done
Recieved 233 days ago
1
Replies
NEW POSTING