Search Results

Search: Posts Made By: KayYesVee
2,491
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,405
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 10:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy