我按顺序调用了许多BASH脚本,例如script1.sh
包含:
#!/bin/bash
bash script2.sh
bash script3.sh
bash script4.sh
script2.sh
包含:
#!/bin/bash
file_a="1.txt"
cp $file_a /tmp/$file_a.tmp
script3.sh
包含:
#!/bin/bash
wc -l /tmp/$file_a.tmp
script4.sh
包含:
#!/bin/bash
cat /tmp/2.txt $file_a.tmp > file3.txt
每个文件都需要访问一小组变量。如何将变量从一个脚本传递到下一个脚本?
答案 0 :(得分:0)