繁体   English   中英

如何在不同的 shell 中执行命令?

[英]How to execute a command in a different shell?

I have a bash script that opens up a shell called salome shell and it should execute a command called as_run in that shell. 问题是在进入莎乐美 shell 后,它不会执行命令,直到我退出莎乐美 shell。 这是我得到的代码:

#!/bin/bash

cd /opt/salome/appli_V2018.0.1_public
./salome shell
eval "as_run /home/students/gbroilo/Desktop/Script/Template_1_2/exportSalome" 

我应该怎么做才能执行salome shell中的命令?

大多数 shell 实现了一种将命令作为参数传递的方法,例如

dash -c 'x=1 ; echo $x'

您需要查阅您的 shell 手册以查看是否可行。

您也可以尝试将命令发送到 shell 的标准输入:

echo 'set x = 1 ; echo $x' | tcsh

在复杂命令的情况下,使用 HERE 文档可能更具可读性:

tcsh << 'TCSH'
    set x = 1
    echo $x
TCSH

可能这就是你想要的:

# call salome shell with commands in a specified script file
cd /opt/salome/appli_V2018.0.1_public
./salome shell <"/home/students/gbroilo/Desktop/Script/Template_1_2/exportSalome"

或者这可能是你想要的:

# pipe a command as_run... to salome shell
cd /opt/salome/appli_V2018.0.1_public
echo "as_run /home/students/gbroilo/Desktop/Script/Template_1_2/exportSalome" | ./salome shell

无论如何,你必须阅读莎乐美指南,了解莎乐美 shell 如何调用它的脚本。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM