Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Find (Unix)
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
===Search files by name and size === <syntaxhighlight lang="console"> $ find /usr/src ! \( -name '*,v' -o -name '.*,v' \) '{}' \; -print </syntaxhighlight> This command will search the /usr/src directory tree. All files that are of the form {{mono|'*,v'}} and {{mono|'.*,v'}} are excluded. Important arguments to note are in the [[tooltip]] that is displayed on mouse-over. <syntaxhighlight lang="bash"> for file in $(find /opt \( -name error_log -o -name 'access_log' -o -name 'ssl_engine_log' -o -name 'rewrite_log' -o -name 'catalina.out' \) -size +300000k -a -size -5000000k); do cat /dev/null > $file done </syntaxhighlight> The units should be one of {{mono|[bckw]}}, 'b' means 512-byte blocks, 'c' means byte, 'k' means kilobytes and 'w' means 2-byte words. The size does not count indirect blocks, but it does count blocks in sparse files that are not actually allocated.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)