다음 줄 사이에 행을 삽입하려고 합니다.
auth sufficient pam_unix.so nullok try_first_pass
<insert the text here>
auth requisite pam_succeed_if.so uid >= 1000 quiet
답변1
질문이 모호하지만 효과가 있을 수 있습니다.
$ cat 2-lines
auth sufficient pam_unix.so nullok try_first_pass
auth requisite pam_succeed_if.so uid >= 1000 quiet
라인 1 뒤에 GNU의 추가 명령을 적용하십시오 sed
.
$ sed '1a new line inserted' 2-lines
auth sufficient pam_unix.so nullok try_first_pass
new line inserted
auth requisite pam_succeed_if.so uid >= 1000 quiet
PATTERN이 포함된 줄 뒤에 줄을 삽입하려면 위의 1a를 /PATTERN/a로 변경하세요.