특정 문자열 아래줄 삭제 후 저장
sed -i '/^seotest/{n;d}' test
$ cat test
vvvvvvvvvvvvvv
seotest
adfadfadzvcvzcvcvz
123213123123
# 명령어 수행
sed -i '/^seotest/{n;d}' test
$ cat test
vvvvvvvvvvvvvv
seotest
123213123123
특정 문자열 아래 문자열 추가
sed -i'' -r -e "/seotest/a\add hello world" test
$ cat test
vvvvvvvvvvvvvv
seotest
123213123123
# 명령어 수행
sed -i'' -r -e "/seotest/a\add hello world" test
$ cat test
vvvvvvvvvvvvvv
seotest
add hello world
123213123123
반응형
'인프라 > 리눅스' 카테고리의 다른 글
[Ubuntu] ubuntu20.04 httpd apache 설치 (0) | 2022.07.17 |
---|---|
[Linux] iptables는 최대 몇 라인까지 적용? (0) | 2022.07.12 |
[Centos7] OpenLDAP 구축 (0) | 2022.06.13 |
[centos7] svn 구축 및 활용 (0) | 2022.06.11 |
centos7 svn: E205007: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options (0) | 2022.05.18 |
댓글