请问如何兼容在linux bash和cshell下运行的script?
时间:10-02
整理:3721RD
点击:
如何兼容在linux bash和cshell下运行的script
Cadence IC 616 的环境变量设置在bash下,使用export 命令,比如:
export CDS_LIC_FILE = 5280@tqb
但是现在需要安装的库的环境变量设置在cshell下,比如:
setenv CDS_MMSIM_DIR /cad/cdsmmsim11_10_467
set path=($path $CDS_MMSIM_DIR/tools/bin)
我试着用如下方法:
alias CDS_MMSIM_DIR=’/cad/cdsmmsim11_10_467’
set path=($path $CDS_MMSIM_DIR/tools/bin)
但是没有用, 请问如何兼容在linux bash和cshell下运行的script?
非常感谢。
Cadence IC 616 的环境变量设置在bash下,使用export 命令,比如:
export CDS_LIC_FILE = 5280@tqb
但是现在需要安装的库的环境变量设置在cshell下,比如:
setenv CDS_MMSIM_DIR /cad/cdsmmsim11_10_467
set path=($path $CDS_MMSIM_DIR/tools/bin)
我试着用如下方法:
alias CDS_MMSIM_DIR=’/cad/cdsmmsim11_10_467’
set path=($path $CDS_MMSIM_DIR/tools/bin)
但是没有用, 请问如何兼容在linux bash和cshell下运行的script?
非常感谢。
who know it?