Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
barrkel
on July 12, 2012
|
parent
|
context
|
favorite
| on:
Vim Creep
I think it's better to use grep. Knowing the options to apropos has very low value. Knowing grep has lots and lots of value.
tomp
on July 12, 2012
[–]
I agree. I have no idea how to use `find`. I always do `find . | grep whatever`, since I know the basics of grep.
Dobbs
on July 12, 2012
|
parent
[–]
Learning find is a worthy investment.
find ./ -name "*.log" -size +2G -ctime +3 | xargs -P 8 gzip
Will find all log files over 2 gigs and older than 3 days. Then it will gzip them split across 8 parallel gzip processes.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search: