我正在尝试制作模块化脚本。我有几个从单个脚本中调用的脚本/命令。
我想给每个单独的命令的输出加上前缀。
考试:
我的文件是allcommands.sh / command1.sh / command2.sh
command1.sh输出
file exists
file moved
command2.sh输出
file copied
file emptied
allcommands.sh运行脚本command1.sh和command2.sh
我想为这两个脚本的每个输出加上前缀:
[command1] file exists
[command1] file moved
[command2] file copied
[command2] file emptied
请给我一个例子,说明我提供的信息。我不太了解
—
伊万·多科夫
sed
功能。对不起。
sed "s/\^/command1 /"