반응형
[리눅스 명령어]CentOS : man sed
1. 용도 및 목적
텍스트 필터링 출력 및 변환을 위한 스트림 편집기
2. 자주 쓰는 옵션
-/etc/selinux/config 파일의 SELINUX=enforcing 를 SELINUX=disabled로 변경
#sed -i "s/^SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config
-/etc/pam.d/system-auth 파일의 pam_env.so 문구 뒤에 행을 변경하여 auth required pam_tally2.so onerr=fail deny=5 를 추가
#sed -i "/pam_env.so/aauth required pam_tally2.so onerr=fail deny=5" /etc/pam.d/system-auth
-/etc/pam.d/system-auth 파일의 deny=5 문구가 포함된 라인 삭제
#sed -i "/deny=5/d" /etc/pam.d/system-auth
-/home/test 파일의 공백라인 삭제
#sed -i "/^$/d" /home/test
-/home/test 파일의 공백라인 삭제
#sed -i "/^$/d" /home/test
-특정 라인 출력
#sed -n "1p" /home/test
-selinux disable
#sed -i 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
반응형
'OS (RHEL,CentOS) > Linux Command' 카테고리의 다른 글
[리눅스 명령어]CentOS : man scp (0) | 2023.01.14 |
---|---|
[리눅스 명령어]CentOS : man service (0) | 2023.01.14 |
[리눅스 명령어]CentOS : man systemctl (0) | 2023.01.14 |
[리눅스 명령어]CentOS : man man (0) | 2023.01.14 |
[리눅스 명령어]CentOS : man nmap (0) | 2023.01.14 |