Search Results

Search: Posts Made By: KayYesVee
2,527
Posted By KayYesVee
the above is limited to each row having max of...
the above is limited to each row having max of two words not begining with "."(dot). use for loop to overcome this limitation..
awk -F" " ' !/^\./ {for(i=1;i<=NF;i++) {printf $i " " } printf "\n" }'...
7,451
Posted By KayYesVee
U said the answer urself...
use..
du -a | sort -rn | head -n 10

you can use this if you want to omit the directory list obtained above
du -a | grep '.*\..*\..*' | sort -nr | head -n 10
Showing results 1 to 2 of 2

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