Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 5 down vote accepted

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
share|improve this answer
Don't parse ls, use a glob instead (i.e. for file in *; do) – Gordon Davisson Oct 26 '12 at 22:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.