:%s/foo/bar/g
- Find each occurrence of 'foo' (in all lines), and replace it with 'bar'.
:s/foo/bar/g
- Find each occurrence of 'foo' (in the current line only), and replace it with 'bar'.
# find . -type f | wc -l
29
# find / -type f -size +10000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'
| moreatau kebalikannya
find / -type f -size +20000k -exec ls -lh {} \; 2> /dev/null | awk '{ print $NF ": " $5 }' | sort -nrk 2,2 | more
wahhh menyimak dulu deh
ReplyDelete