Search Results

Search: Posts Made By: chetancrsp18
23,084
Posted By yazu
As well as for regular files.
As well as for regular files.
3,738
Posted By kshji
ls | grep "^SOME" # start with ... # = ls...
ls | grep "^SOME" # start with ...
# =
ls SOME*
# =
echo SOME*
# =
find . -depth 1 -name "SOME*"
3,738
Posted By prarat
go to that folder and try this command ls |...
go to that folder and try this command

ls | grep 'XX_IN*'

Thanks,
Pragyan
3,738
Posted By joeyg
Could you do find . -name "*.* | grep "File" ...
Could you do
find . -name "*.* | grep "File"
or
find .Folder -name "*.* | grep "File"
87,678
Posted By aju_kup
use ls -l |grep ^\- | wc -l
use

ls -l |grep ^\- | wc -l
87,678
Posted By
Use find. Look at man find for more options. ...
Use find. Look at man find for more options.

find /usr/bin/ -size 11k -exec ls {} \;|wc -l
87,678
Posted By RTM
ls -1 | wc -l This will give you a count of...
ls -1 | wc -l

This will give you a count of all the files (including directories). If you want just certain files, either change the ls command to look for *.txt (to look for files with .txt...
Showing results 1 to 7 of 7

 
All times are GMT -4. The time now is 06:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy