파일의 특정 라인번호의 내용을 보고 싶을 때

sed -n '120p' file_path


파일의 특정 문구가 들어가는 문장을 보고 싶을 때

cat -n file_path | grep '단어'

+ Recent posts