Ich versuche ein modulares Skript zu erstellen. Ich habe mehrere Skripte / Befehle, die von einem einzigen Skript aufgerufen werden.
Ich möchte der Ausgabe jedes einzelnen Befehls ein Präfix voranstellen.
Beispiel:
Meine Dateien sind allcommands.sh / command1.sh / command2.sh
command1.sh Ausgängen
file exists
file moved
command2.sh Ausgängen
file copied
file emptied
allcommands.sh führt die Skripte command1.sh und command2.sh aus
Ich möchte jeder Ausgabe dieser beiden Skripte folgendes Präfix voranstellen:
[command1] file exists
[command1] file moved
[command2] file copied
[command2] file emptied
sed
Funktionalität nicht wirklich . Es tut mir Leid.
sed "s/\^/command1 /"