Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当作为参数传递给另一个 shell 脚本时,我想调试一个 shell 脚本
第一个.sh 第二个.sh 100
我在两个脚本中都设置了 -x 但无法调试第二个脚本
由于这里没有太多事情要做,因此需要确保
#!/bin/env bash
ls -l first.sh ls -l second.sh
第一列至少应具有 -rwx----- 如果没有,则使用以下命令使它们可执行
chmod 700 first.sh chmod 700 second.sh
错误消息等将帮助我们帮助您:)