![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`" | Lokesha | UNIX for Dummies Questions & Answers | 4 | 12-19-2007 10:52 PM |
| grep to find content in between curly braces, "{" and "}," | keshav_rk | Shell Programming and Scripting | 4 | 08-09-2007 07:14 PM |
| Listing only directories in the current working directory using the "ls" command | igandu | UNIX for Dummies Questions & Answers | 2 | 05-12-2006 01:47 AM |
| How to find out the exact year in "Last modified time" using ls command | Dophlinne | UNIX for Dummies Questions & Answers | 6 | 04-11-2006 08:07 AM |
| chmod 777 on all directories below...how do I do that using the "find" command? | Neko | UNIX for Dummies Questions & Answers | 7 | 07-12-2001 06:58 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#8
|
|||
|
|||
|
Quote:
Code:
/tmp/tmp> ls -l total 16 drwxr-xr-x 2 common 240 Jul 22 09:42 asdf.jkl -rw-r--r-- 1 common 0 Jul 22 09:40 one -rw-r--r-- 1 common 0 Jul 22 09:40 two /tmp/tmp> /tmp/tmp> find . *.* . ./one ./two ./asdf.jkl ./asdf.jkl/three ./asdf.jkl/four asdf.jkl asdf.jkl/three asdf.jkl/four /tmp/tmp> /tmp/tmp> find *.* asdf.jkl asdf.jkl/three asdf.jkl/four |
| Forum Sponsor | ||
|
|
|
#9
|
|||
|
|||
|
Typical would be:
Code:
find . -maxdepth 1 -type f Alternately, if you also want symlinks, pipes and the other folderol: Code:
find . -maxdepth 1 -not -type d |
|
#10
|
|||
|
|||
|
BMDan, maxdepth is not standard; it only works on GNU find. My Solaris workstation does not have GNU find. Instead, a variation of a command posted by Perderabo should be used:
Code:
find . \( ! -name . -prune ! -type d \) |
|||
| Google The UNIX and Linux Forums |
| Tags |
| solaris |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|