🐈

Reading lines with Bash

Tags
Tools
Date
May 12, 2022
if cat is impossible try:
while read line; do echo $line; done < file.txt
Β 
to see all of the contents inside a directory can use
grep -R .
remark:
  • R, --dereference-recursive likewise, but follow all symlinks
Β