简体   繁体   中英

Linux command that can do this Batch Command's job

I have a batch command:

deploy_package.cmd -f ../../packages -s %TargetSystem%

I need a linux command which can do the same task of the above batch command. I have deploy_package.sh available in the same location.

Please help

./deploy_package.sh -f ../../packages -s $TargetSystem

Instead of the variable $TargetSystem you should write the name of the Target System (if the variable does not exist; and it does not exist, of course).

Information about your system (type, architecture and so on) you can get using uname .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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