追加用法總結nginx
passwd文件第10行後面追加"Add Line Behind"bash
sed -i '10aAdd Line Behind' passwd
passwd文件第10行到第20行,每一行後面都追加"Test Line Behind"spa
sed -i '10,20a Test Line Behind' passwd
passwd文件匹配到/bin/bash的行後面追加"Insert Line For /bin/bash Behind"blog
sed -i '/\/bin\/bash/a Insert Line For /bin/bash Behind' passwd
passwd文件匹配到以nginx開頭的行,在匹配行前面追加"Add Line Before"it
sed -i '/^nginx/i Add Line Before' passwd
passwd文件每一行前面都追加"Insert Line Before Every Line"console
sed -i 'a Insert Line Before Every Line' passwd
將/etc/fstab文件的內容追加到passwd文件第20行後面class
sed -i '20r /etc/fstab' passwd
將/etc/inittab文件內容追加到passwd文件匹配到/bin/bash行的後面ftp
sed -i '/\/bin\/bash/r /etc/inittab' passwd
將/etc/vconsole.conf文件內容追加到passwd文件中特定行後面,匹配以ftp開頭的行,到第18行的全部行sed
sed -i '/^ftp/,18r /etc/vconsole.conf' passwd
將passwd文件匹配到/bin/bash的行追加到/tmp/sed.txt文件中總結
sed -i '/\/bin\/bash/w /tmp/sed.txt' passwd
將passwd文件從第10行開始,到匹配到/sbin/nologin的全部行內容追加到/tmp/sed-1.txt
sed -i '10,/\/sbin\/nologin/w /tmp/sed-1.txt' passwd
混合區間匹配讀取內容追加容易出錯 在處理幾十萬上百萬的文件中,能夠找出特定的行,輸出到一個文件中,而後再對這個文件進行處理