g*******n 发帖数: 1 | 1 I have some simple Unix questions. Hope to get answers here.
Thanks a lot!
1) How to make a mirror directory. Say if I have a directory
A, I want directory B is
the virtually linked to A. How to do it?
2)With such shell file:
tmn -i INPUT -o OUTPUT/output${1}.dat -r {1}
where tmn is a excutable file name, all the others are its
arguments. It's written
by someone else. It's supposed to work like that, if you let
${1} be 50 then it
should be
tmn -i INPUT -o OUTPUT/output50.dat -r 50
and if you let | m*****e 发帖数: 4193 | 2
ln -s A B
$1?
【在 g*******n 的大作中提到】 : I have some simple Unix questions. Hope to get answers here. : Thanks a lot! : 1) How to make a mirror directory. Say if I have a directory : A, I want directory B is : the virtually linked to A. How to do it? : 2)With such shell file: : tmn -i INPUT -o OUTPUT/output${1}.dat -r {1} : where tmn is a excutable file name, all the others are its : arguments. It's written : by someone else. It's supposed to work like that, if you let
| w*****n 发帖数: 94 | 3
The first argument of the shell script.
【在 m*****e 的大作中提到】 : : ln -s A B : $1?
|
|