我遇到了一个问题(关于SO本身),OP必须进行编辑并将操作保存到Input_file本身。
我知道对于一个Input_file我们可以执行以下操作:
awk '{print "test here..new line for saving.."}' Input_file > temp && mv temp Input_file
现在假设我们需要以相同类型的文件格式进行更改(假设.txt这里)。
我对这个问题尝试/思考的:它的方法是通过.txt文件的 for 循环,调用单个awk
是一个痛苦且不推荐的过程,因为它会浪费不必要的 CPU 周期,对于更多数量的文件,它会更慢。
那么这里可以做些什么来对不支持就地选项的非 GNUawk
的多个文件执行就地编辑。我也经历了这个线程 用awk保存修改,但对于非GNU awk恶习和在awk
本身中就地更改多个文件没有什么inplace
因为非GNU awk将没有选择。
注意:为什么我要添加bash
标签,因为在我的答案部分中,我使用 bash 命令将临时文件重命名为其实际Input_file名称,因此添加了它。
编辑:根据 Ed sir 的评论,在此处添加示例示例,尽管此线程代码的目的也可以用于通用目的就地编辑。
样本Input_file:
cat test1.txt
onetwo three
tets testtest
cat test2.txt
onetwo three
tets testtest
cat test3.txt
onetwo three
tets testtest
预期输出示例:
cat test1.txt
1
2
cat test2.txt
1
2
cat test3.txt
1
2
由于此线程的主要目的是如何在非 GNUawk
中就地保存,所以我首先发布它的模板,这将有助于任何人满足任何类型的要求,他们需要在他们的代码中添加/附加BEGIN
和END
部分,根据他们的要求保持他们的主块,然后它应该进行就地编辑:
注意:
以下会将其所有输出写入output_file,因此如果您想将任何内容打印到标准输出,请仅添加print...
语句而不> (out)
以下内容。
通用模板:
awk -v out_file="out" '
FNR==1{
close(out)
out=out_file count++
rename=(rename?rename ORS:"") "mv 47" out " 47 47" FILENAME " 47"
}
{
.....your main block code.....
}
END{
if(rename){
system(rename)
}
}
' *.txt
具体提供的样品解决方案:
我在awk
本身中提出了以下方法(对于添加的示例,以下是我解决此问题并将输出保存到Input_file本身的方法)
awk -v out_file="out" '
FNR==1{
close(out)
out=out_file count++
rename=(rename?rename ORS:"") "mv 47" out " 47 47" FILENAME " 47"
}
{
print FNR > (out)
}
END{
if(rename){
system(rename)
}
}
' *.txt
注意:这只是将编辑后的输出保存到Input_file本身的测试,可以使用其BEGIN部分以及其程序中的END部分,主要部分应根据特定问题本身的要求。
公平警告:此外,由于这种方法在路径中创建了一个新的临时输出文件,因此最好确保我们在系统上有足够的空间,尽管最终结果这将仅保留主Input_file,但在操作过程中它需要系统/目录上的空间
以下是对上述代码的测试。
程序的执行与示例: 假设以下是.txt
Input_file:
cat << EOF > test1.txt
onetwo three
tets testtest
EOF
cat << EOF > test2.txt
onetwo three
tets testtest
EOF
cat << EOF > test3.txt
onetwo three
tets testtest
EOF
现在,当我们运行以下代码时:
awk -v out_file="out" '
FNR==1{
close(out)
out=out_file count++
rename=(rename?rename ORS:"") "mv 47" out " 47 47" FILENAME " 47"
}
{
print "new_lines_here...." > (out)
}
END{
if(rename){
system("ls -lhtr;" rename)
}
}
' *.txt
注意:我故意将ls -lhtr
放在system
部分中以查看它正在创建哪些输出文件(临时基础),因为稍后它会将它们重命名为实际名称。
-rw-r--r-- 1 runner runner 27 Dec 9 05:33 test2.txt
-rw-r--r-- 1 runner runner 27 Dec 9 05:33 test1.txt
-rw-r--r-- 1 runner runner 27 Dec 9 05:33 test3.txt
-rw-r--r-- 1 runner runner 38 Dec 9 05:33 out2
-rw-r--r-- 1 runner runner 38 Dec 9 05:33 out1
-rw-r--r-- 1 runner runner 38 Dec 9 05:33 out0
当我们在脚本完成运行后执行awk
ls -lhtr
时,我们只能看到其中.txt
文件。
-rw-r--r-- 1 runner runner 27 Dec 9 05:33 test2.txt
-rw-r--r-- 1 runner runner 27 Dec 9 05:33 test1.txt
-rw-r--r-- 1 runner runner 27 Dec 9 05:33 test3.txt
说明:在此处添加上述命令的详细说明:
awk -v out_file="out" ' ##Starting awk program from here, creating a variable named out_file whose value SHOULD BE a name of files which are NOT present in our current directory. Basically by this name temporary files will be created which will be later renamed to actual files.
FNR==1{ ##Checking condition if this is very first line of current Input_file then do following.
close(out) ##Using close function of awk here, because we are putting output to temp files and then renaming them so making sure that we shouldn't get too many files opened error by CLOSING it.
out=out_file count++ ##Creating out variable here, whose value is value of variable out_file(defined in awk -v section) then variable count whose value will be keep increment with 1 whenever cursor comes here.
rename=(rename?rename ORS:"") "mv 47" out " 47 47" FILENAME " 47" ##Creating a variable named rename, whose work is to execute commands(rename ones) once we are done with processing all the Input_file(s), this will be executed in END section.
} ##Closing BLOCK for FNR==1 condition here.
{ ##Starting main BLOCK from here.
print "new_lines_here...." > (out) ##Doing printing in this example to out file.
} ##Closing main BLOCK here.
END{ ##Starting END block for this specific program here.
if(rename){ ##Checking condition if rename variable is NOT NULL then do following.
system(rename) ##Using system command and placing renme variable inside which will actually execute mv commands to rename files from out01 etc to Input_file etc.
}
} ##Closing END block of this program here.
' *.txt ##Mentioning Input_file(s) with their extensions here.
如果我要尝试这样做,我可能会选择这样的东西:
$ cat ../tst.awk
FNR==1 { saveChanges() }
{ print FNR > new }
END { saveChanges() }
function saveChanges( bak, result, mkBackup, overwriteOrig, rmBackup) {
if ( new != "" ) {
bak = old ".bak"
mkBackup = "cp 47" old " 47 47" bak " 47; echo "$?""
if ( (mkBackup | getline result) > 0 ) {
if (result == 0) {
overwriteOrig = "mv 47" new " 47 47" old " 47; echo "$?""
if ( (overwriteOrig | getline result) > 0 ) {
if (result == 0) {
rmBackup = "rm -f 47" bak " 47"
system(rmBackup)
}
}
}
}
close(rmBackup)
close(overwriteOrig)
close(mkBackup)
}
old = FILENAME
new = FILENAME ".new"
}
$ awk -f ../tst.awk test1.txt test2.txt test3.txt
我宁愿先将原始文件复制到备份,然后对保存对原始文件的更改进行操作,但这样做会更改每个输入文件的 FILENAME 变量的值,这是不希望的。
请注意,如果您的目录中有一个名为whatever.bak
或whatever.new
的原始文件,那么您会用临时文件覆盖它们,因此您也需要为此添加测试。调用mktemp
以获取临时文件名会更可靠。
在这种情况下,更有用的东西是执行任何其他命令并进行"就地"编辑部分的工具,因为它可用于为 POSIX sed、awk、grep、tr 等提供"就地"编辑,并且不需要您每次要打印值时都将脚本的语法更改为print > out
等。一个简单而脆弱的例子:
$ cat inedit
#!/bin/env bash
for (( pos=$#; pos>1; pos-- )); do
if [[ -f "${!pos}" ]]; then
filesStartPos="$pos"
else
break
fi
done
files=()
cmd=()
for (( pos=1; pos<=$#; pos++)); do
arg="${!pos}"
if (( pos < filesStartPos )); then
cmd+=( "$arg" )
else
files+=( "$arg" )
fi
done
tmp=$(mktemp)
trap 'rm -f "$tmp"; exit' 0
for file in "${files[@]}"; do
"${cmd[@]}" "$file" > "$tmp" && mv -- "$tmp" "$file"
done
您将按如下方式使用:
$ awk '{print FNR}' test1.txt test2.txt test3.txt
1
2
1
2
1
2
$ ./inedit awk '{print FNR}' test1.txt test2.txt test3.txt
$ tail test1.txt test2.txt test3.txt
==> test1.txt <==
1
2
==> test2.txt <==
1
2
==> test3.txt <==
1
2
该inedit
脚本的一个明显问题是,当您有多个输入文件时,很难将输入/输出文件与命令分开识别。上面的脚本假设所有输入文件在命令末尾显示为列表,并且命令一次对它们运行一个,但当然这意味着您不能将其用于一次需要 2 个或更多文件的脚本,例如:
awk 'NR==FNR{a[$1];next} $1 in a' file1 file2
或在 arg 列表中的文件之间设置变量的脚本,例如:
awk '{print $7}' FS=',' file1 FS=':' file2
让它更健壮,留给读者作为练习,但将xargs
概要作为健壮inedit
需要如何工作的起点:-)。
shell 解决方案很简单,而且可能足够快:
for f in *.txt
do awk '...' "$f" > "$f.tmp"
mv "$f.tmp" "$f"
done
仅当您最终证明这太慢时,才搜索其他解决方案。请记住:过早优化是万恶之源。