非交互模式编辑文件
先理解一下这里的非交互
,也就是不需要移动光标。 为什么出现这种需求?
- 比如写脚本处理文件时。
- 终端不支持交互模式时。
- 想一条命令改某个文件的明显位置时。
- …
新建一个作为测试的文本。
echo "foo bar baz" > test.txt
sed http://www.gnu.org/software/sed/manual/
sed -i '' 's/b/B/g' test.txt
awk http://www.gnu.org/software/gawk/manual/
awk '{gsub(/b/,"B")}1' test.txt > test.txt_ && mv test.txt_ test.txt
vi http://vimcdoc.sourceforge.net/doc/help.html
vi -c "%s/b/B/g|wq" test.txt
echo "%s/b/B/g | w" | vim -e test.txt
vi 与 sed 比较
sed 更快。
# Creates 10.000 files to test
for i in {1..1000}; do echo "test" > $i.txt; done
time for i in {1..1000}; do echo "%s/test/new-value/g | w" | vim -e $i.txt; done
# Executes in 22.13s
time for i in {1..1000}; do sed -i '' -e 's/test/new-value/g' $i.txt; done
# Executes in 3.12s
ex 模式
ex -s -c '%s/b/B/g|x' test.txt
perl
perl -i -pe 's/b/B/g' test.txt
参考
https://askubuntu.com/questions/20414/find-and-replace-text-within-a-file-using-commands
https://www.brianstorti.com/vim-as-the-poor-mans-sed/
https://www.brianstorti.com/enough-sed-to-be-useful/
https://sharadchhetri.com/2014/07/06/vi-edit-file-without-opening/