是否可以在 Linux Shell 中同时传递两个命令?例如,与其以这种方式编写命令,
root# cd Python-2.6.6
Python-2.6.6# ./configure
我想要这样的方法在一行中执行整个命令;
root# cd Python-2.6.6 ./configure
也就是说,在 root 状态下,我想更改目录并配置 python 文件。
答案1
使用适当的命令分隔符。
cd Python-2.6.6 && ./configure
是否可以在 Linux Shell 中同时传递两个命令?例如,与其以这种方式编写命令,
root# cd Python-2.6.6
Python-2.6.6# ./configure
我想要这样的方法在一行中执行整个命令;
root# cd Python-2.6.6 ./configure
也就是说,在 root 状态下,我想更改目录并配置 python 文件。
使用适当的命令分隔符。
cd Python-2.6.6 && ./configure