This piece of bash code, shows no folder name while there exists many folders.
#!/bin/bash for file in .; do if [ -d $file ]; then echo $file fi done
the output is only . Can you explain why?
.
it reads . as an array of size one and prints it for you. use something like this instead:
for file in `ls`; do if [ -d $file ]; then echo $file fi done
ls
for file in *; do
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
7 months ago
viewed
39 times
active