×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Thanks for the tip. Seems like I read that somewhere before, but I guess
it just never registered.
Brian May
Project Lead
Management Information Systems
Garan, Incorporated
Starkville, Mississippi
Young i Professionals
http://www.youngiprofessionals.com
Scott Klement <midrange-l@xxxxxxxxxxxxxxxx>
Sent by: midrange-l-bounces@xxxxxxxxxxxx
06/09/2009 03:10 PM
Please respond to
Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>
To
Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>
cc
Subject
Re: 7-zip in PASE
hi Brian,
You can put the CD command and the 7z command both in your &CMD
variable.
Just separate the commands with a semicolon. So your &CMD variable
would
contain
Small tweak... Use && instead of semicolon.
If you do:
cd /whatever ; somecmd
Then somecmd will be run EVEN IF the cd failed. So you might end up
doing something in the wrong directory. Even best case scenario, it'll
be hard to troubleshoot what failed, since somecmd will still run, it'll
just fail because it's in the wrong directory.
So it's better to do this:
cd /whatever && somecmd
In this case, the somecmd command is only executed if the CD command was
successful. Therefore, if the directory change doesn't work, the error
message will be the one from the cd command, and the somecmd command
won't be executed.
As an Amazon Associate we earn from qualifying purchases.