我有一個輸入文件,其中包含幾個路徑,其中一個引用初始解決方案。相應的線路如下:grep啓動後臺進程
initial_solution_file = ../../INIT/foo
我想要做的是有這樣我就輸入「初始化」和外殼將返回,將顯示此路徑的別名「最初的解決方案是:../ ../INIT/foo」
我曾嘗試是:
grep initial_solution_file input_file | awk '{print $3}' | echo "the initial solution is:" `xargs echo`
它提供了所需的輸出,但我additionaly得到的東西,如: [6] 48201 48202
這是什麼以及如何防止它發生?
在此先感謝
嘗試在'grep'前添加'command'。像'command grep initial_solution_file input_file ...' – NullDev