Disks and Filesystem Permisisons
Tools covered:
dd
gzip
fdisk
free
swapoff/swapon
find
chmod
find
Syntax: find [location] [type] [what]
[location]
-> Here we put the path where we want to search the item [type]
-> Here we put the type of item we are searching for by specifying using a flag like f
or d
. [what]
-> Here we define the expression of item we are searching for.
Example: find . -type f "Tekegram*"
In the above command we use find to search in the present directory by putting .
Last updated