모듈 식 스크립트를 만들려고합니다. 단일 스크립트에서 호출되는 여러 스크립트 / 명령이 있습니다.
각 개별 명령의 출력 앞에 접두사를 붙이고 싶습니다.
예 :
내 파일은 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
내가 제공 한 정보를 예로 들어주세요. 나는
—
Ivan Dokov
sed
기능을 실제로 이해하지 못한다 . 죄송 해요.
sed "s/\^/command1 /"