회사 스터디에서 들었던 내용을 정리합니다.

cat hello*

cat -A "hello world" # vET option

tail -f -n2 hello1.log hello2.log

cat data.csv | cut -d',' -f1,4 > newdata.csv

echo "abc" | tr 'abc' '123'