我有一个简单的 bash 脚本要运行:
cat full_path.csv | parallel --progress -j +0 'echo -n {},; pdfgrep -c [^_] {};' > path_count.csv
并行的进度指示器"--progress"
,写入文件path_count.csv
。我只想写入文件,同时echo {}
显示pdfgrep {}
--progress
屏幕。
如果我做 :
cat full_path.csv | parallel --progress -j +0 'echo -n {},>>path_count.csv; pdfgrep -c [^_] {}>>path_count.csv;'
文件 path_count 的进度仍然乱码。
任何帮助表示赞赏。谢谢阿尔文