第十八天

liu4356發表於2024-03-10

第十八天

取出ifconfIg ens33命令中本機的IPv4地址 可以百度擴充套件 瞭解即可 記不住也沒事 不常用

ifconfig ens33 | egrep -o 'inet [0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/' |egrep -o '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'

把/etc/passwd 複製到/root/test.txt,用sed列印所有行

cp /etc/passwd /root/test.txt
sed -n '/^$/!p' /root/test.txt

列印test.txt的3到10行

sed -n '3,10p' /root/test.txt

列印test.txt 中包含 ‘root’ 的行

grep 'root' /root/test.txt

刪除test.txt 的15行以及以後所有行

sed '15,$d' /root/test.txt

刪除test.txt中包含 ‘bash’ 的行

sed '/bash/d' /root/test.txt

替換test.txt 中 ‘root’ 為 ‘ha’

sed 's/root/ha/g'  /root/test.txt

替換test.txt中 ‘/sbin/nologin’ 為 ‘/bin/login’

sed 's#/sbin/nologin#/bin/login#g' /root/test.txt

列印/etc/passwd的奇數行?

sed -n 'n;p' /etc/passwd

把/etc/httpd/conf/httpd.conf?件內的Linsten 80改為Listen 8081 sed 完成

sed -i 's/Listen 80/Listen 8081/g' /etc/httpd/conf/httpd.conf

相關文章