# basic

## Writable Paths

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

## Alternatives of `cat`

```bash
# using grep 
grep . <filename> 

# print all files in current dir 
grep -R . 

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