$ sed 's/linux/LINUX/g' test.txt
[beyes@beyes sed]$ cat test.txt
groad beyes
groad linux
beyes unix
groad windows linux
[beyes@beyes sed]$ sed /groad/s/linux/LINUX/g test.txt
groad beyes
groad LINUX
beyes unix
groad windows LINUX
[beyes@beyes sed]$ sed -e '/groad/!d' -e '/windows/!d' -e 's/linux/LINUX/g' test.txt
groad windows LINUX
[beyes@beyes sed]$ cat temp.txt
www
baidu
com
www
groad
net
www
sina
com
cn
www
qunet
info
[beyes@beyes sed]$ sed '/www/,/www/d' temp.txt
groad
net
qunet
info
[beyes@beyes sed]$ sed '/www/,/qunet/d' temp.txt
info
$cat temp.txt
1. Linux - Sysadmin, Scripting etc.
2. Databases - Oracle, mySQL etc.
3. Hardware
4. Security (Firewall, Network, Online Security etc)
5. Storage
6. Cool gadgets and websites
7. Productivity (Too many technologies to explore, not much time available)
8. Website Design
9. Software Development
10.Windows- Sysadmin, reboot etc.
# sed -n '8'p temp.txt
8. Website Design
# sed -n '3~2'p temp.txt
3. Hardware
5. Storage
7. Productivity (Too many technologies to explore, not much time available)
9. Software Development
# sed -n '3,8'p temp.txt
3. Hardware
4. Security (Firewall, Network, Online Security etc)
5. Storage
6. Cool gadgets and websites
7. Productivity (Too many technologies to explore, not much time available)
8. Website Design
# sed -n '$'p temp.txt
10.Windows- Sysadmin, reboot etc.
# sed -n '3,$'p temp.txt
3. Hardware
4. Security (Firewall, Network, Online Security etc)
5. Storage
6. Cool gadgets and websites
7. Productivity (Too many technologies to explore, not much time available)
8. Website Design
9. Software Development
10.Windows- Sysadmin, reboot etc.
欢迎光临 曲径通幽论坛 (http://www.groad.net/bbs/) | Powered by Discuz! X3.2 |