1. 程式人生 > >sed用法——在指定行後面添加內容

sed用法——在指定行後面添加內容

ccie style cisc inux security txt 用法 color 添加內容

文檔內容如下:

# cat 123.txt
linux
cisco
huawei
network
system

1. 使用sed命令在cisco行下面添加CCIE;

# sed -i "/cisco/a\CCIE" 123.txt
# cat 123.txt
linux
cisco
CCIE
huawei
network
system

2. 使用sed命令在network行上面添加一行,內容是Security;

# sed -i "/network/i\Security" 123.txt
# cat 123.txt
linux
cisco
CCIE
huawei
Security
network
system

sed用法——在指定行後面添加內容