使用 Shell 脚本运行可执行文件

使用 Shell 脚本运行可执行文件

我已经mplayer安装并且想要创建一个在当前目录中运行bash和执行的简单 shell 脚本。那么,如何在shell脚本中mplayer *调用呢?mplayer

答案1

您应该mplayer以与在终端中使用命令相同的方式在脚本中使用命令。例如:

#!/bin/bash

# some bash code here

cd /path/to/where/you/want/to/start/mplayer
mplayer *

# more bash code here

也可以看看:man mplayer

相关内容