Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 431 Bytes

modify-with-cat.md

File metadata and controls

33 lines (25 loc) · 431 Bytes

에디터 없이 cat으로 파일 수정

  • echo 사용법

    # 덮어쓰기
    ehco "content" > file
    
    # 이어쓰기
    ehco "content" >> file
  • cat 사용법

    # 덮어쓰기
    cat > file
    ...
    ^D # cmd + d
    
    # 덮어쓰기
    cat >> file
    ...
    ^D # 종료 cmd + d
  • <<EOF 사용법

    cat <<EOF > file
    ...
    EOF # 종료