✏️ 正在编辑: readfile.awk
路径:
/usr/share/awk/readfile.awk
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
# readfile.awk --- read an entire file at once # # Original idea by Denis Shirokov, cosmogen@gmail.com, April 2013 # function readfile(file, tmp, save_rs) { save_rs = RS RS = "^$" getline tmp < file close(file) RS = save_rs return tmp }
💾 保存文件
← 返回文件管理器