Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
filename construction and Unix shell command
Posted:
Jul 17, 1996 1:47 AM
|
|
greetings:
i would like to execute unix shell command from Mma:
(!somecommmand )
as an argument to the command, i would like to construct various
pathnames....
/a/b/c/file1 /a/b/c/file2 ... et. al.
so define:
cdir = "/a/b/c/"
onefile = StringJoin[cdir,"file1"]; twofile = StringJoin[cdir,"file2"];
!somecommand onefile
complaints about the evaluation of the expression onefile:
"/a/b/c/file1"
what the shell command would like is:
!somecommand /a/b/c/file1
so how do we build the pathname and still satisfy the shell command?
thanx
m. r.
ps. i tried all manner of ToCharacterCode, ToExpression, etc., that i could think of.
m. r. schaferkotter sverdrup technology, inc. stennis space center, MS
schaferk@tennessee.nrlssc.navy.mil
|
|
|
|