那么有没有办法列出shell脚本正在使用的所有程序?从源代码中检索依赖关系的一种方法.
sed 's/|\|\$(/\n/g' FILENAME | awk '$1~/^#/ {next} $1~/=/ {next} /^[[:space:]]*$/ {next} {print $1}' | sort -u | xargs which 2>/dev/null