shell脚本显示执行过程

Bash shell脚本打印出正在执行的命令,可以在shell脚本文件中添加-v/-x,例如:

#!/bin/bash

set -v

或者

#!/bin/bash -v

你可能感兴趣的:(Linux)