Shell Oneliners >_ [Pinned]
Make a statistic about the lines of code find . -type f -name "*.c" -exec cat {} \; | wc -l Throttling Bandwidth On A Mac sudo ipfw pipe 1 config bw 50KByte/s;sudo ipfw add 1 pipe 1 src-port 80 Get lines count of a list of files find . -name "*.sql" -print0 | wc -l --files0-from=- Save an HTML page, and covert it to a .pdf file wget $URL | htmldoc --webpage -f "$URL"....