You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在替换标记介绍时,这一段话好像不太正确:“p,表明原先行的内容要打印出来;”。这里应该是打印出来修改后的行,配合-n使用可以只查看修改后的行。我运行命令 sed -n 's/dog/cat/p' test,输出了 cat1。当p单独使用时,才会是打印原先行的内容。并且打印的内容是在寻址范围内的行,例如 sed -n 'p' test 会打印所有的行。而 sed -n '1,3p' test 只会打印第1到第3行。
https://archlinuxstudio.github.io/ShellTutorial/#/shellAdvanced/sed_gawk_basic
Linux命令行与Shell脚本教程 包含常见命令行使用,Bash基础、进阶编程,以及实用范例!
The text was updated successfully, but these errors were encountered: