如何将 bash 脚本代码更改为 Python
How can I change bash script -code to Python
大家好,我如何将 bash 脚本代码更改为 Python3。我想使用 Python 脚本。
Final=Sys_"$series".txt
F_final=Pri"$series".txt
awk '{print }' $Final |grep "Y*\."|sort |uniq > $F_final
awk 'FNR==NR { c[] = 0; next; } # file2.txt
in c { c[]++ } # file1.txt
END { for (x in c) printf("%s: Total =%d\n", x, c[x]) }
' $F_final $Final | sort > Result_"$series".txt
您可以从“How to port an awk script to Python”开始“
并考虑使用 alecthomas/pawk
PAWK - A Python line processor (like AWK)
PAWK aims to bring the full power of Python to AWK-like line-processing.
这样,您就可以将这些 awk 指令翻译成类似的 python 指令。
大家好,我如何将 bash 脚本代码更改为 Python3。我想使用 Python 脚本。
Final=Sys_"$series".txt
F_final=Pri"$series".txt
awk '{print }' $Final |grep "Y*\."|sort |uniq > $F_final
awk 'FNR==NR { c[] = 0; next; } # file2.txt
in c { c[]++ } # file1.txt
END { for (x in c) printf("%s: Total =%d\n", x, c[x]) }
' $F_final $Final | sort > Result_"$series".txt
您可以从“How to port an awk script to Python”开始“
并考虑使用 alecthomas/pawk
PAWK - A Python line processor (like AWK)
PAWK aims to bring the full power of Python to AWK-like line-processing.
这样,您就可以将这些 awk 指令翻译成类似的 python 指令。