Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 440 Bytes

File metadata and controls

9 lines (7 loc) · 440 Bytes

How to find things in Linux

command what it means what it does how to use it
find search for things search for files and folders on your system find /home -name somefile.txt
grep search for text search for text in a file grep "someText" somefile.txt

how to read and edit permissions