News
The Linux find command makes it easy to find files on your system – even if you don’t remember their names or exactly when you last updated them. Some of the options are a bit more challenging ...
find / -path /proc -prune -false -o -name 'dev.conf' What that command does is search the entire filesystem for a file named dev.conf, but leaves out the /proc directory in the process.
12d
How-To Geek on MSNWhat’s That You’re Running? Linux Programs, Scripts, Builtins, Functions, and Aliases
A program (binary, or executable) is a file on disk somewhere, in a recognized format. Common formats include ELF on Linux, ...
To ignore binary files, use: grep --binary-files=without-match "pattern" directory If you know the files are text but contain binary headers, force grep to treat them as text with -a: grep -a "pattern ...
Results that may be inaccessible to you are currently showing.
Hide inaccessible results