how do I do the following?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how do I do the following?
# 1  
Old 02-15-2008
how do I do the following?

List all files in your current directory which begin with one alpha character (upper or lowercase) followed by two numbers.
# 2  
Old 02-15-2008
on one line

ls -l ?[0-9][0-9]*

should do the trick
# 3  
Old 02-15-2008
Code:
printf "%s\n" [A-z][0-9][0-9]*

 
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question