basic

some basic key information

Writable Paths

/dev/shm/
/tmp/
/home/<USER>/
/var/www/html/<>

Alternatives of cat

# using grep 
grep . <filename> 

# print all files in current dir 
grep -R . 

# script 
while read line; do echo $line; done < FILE

Last updated