![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| echo | debasis.mishra | Shell Programming and Scripting | 0 | 03-27-2006 09:35 PM |
| How to set echo on | siegfried | Shell Programming and Scripting | 1 | 11-17-2005 10:56 PM |
| What does echo ^[[r do? | hamsasal | UNIX for Advanced & Expert Users | 1 | 07-24-2005 10:14 AM |
| echo with \n | whatisthis | UNIX for Dummies Questions & Answers | 3 | 05-18-2005 07:59 AM |
| echo help | bb00y | High Level Programming | 5 | 10-02-2002 05:53 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
echo ?????
I know..listing the files/directory names with 5 characters.
|
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
I'm not sure if this is a post by itself or not, but if you're asking how to list files/directories with names that are five characters long...
Code:
ls | awk 'length($1) == 5 {print}'
Last edited by oombera; 02-13-2004 at 12:41 PM. |
||||
| Google The UNIX and Linux Forums |