Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i can use

ls|grep \.py$

to list all ends with .py file,but it's seems hard for me to grep all .py & .txt & .tar.gz file once

any one could give me a hand

share|improve this question
1  
what bout ls -d *.py? – knittl Oct 16 '10 at 9:24
respectively ls -d *.py *.txt *.tar.gz – knittl Oct 16 '10 at 10:46

2 Answers

up vote 2 down vote accepted
ls | grep -E '\.(py|txt|tar\.gz)$'
share|improve this answer

No need external commands. Use the shell(bash/ksh)

shopt -s nullglob
for file in *.{txt,tar,gz,py}
do
  echo "$file"
done
share|improve this answer
or even just: ls *.{txt,tar,gz,py} – glenn jackman Oct 17 '10 at 0:00
only when his purpose is just that, listing only. – ghostdog74 Oct 17 '10 at 2:35

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.