Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

I need help to understand what this command line is doing

Status
Not open for further replies.

bikashh

Full Member level 5
Joined
Nov 28, 2009
Messages
264
Helped
3
Reputation
6
Reaction score
3
Trophy points
1,298
Location
india
Activity points
3,132
Dear Experts,


Friends, please help me understand this line of command

%VDB_DIR%\vcshell --echo --out=%VCSHELLDIR%\vcshell.txt --db=%VCSHELLDIR%\vcshell.db 03_project_build.bat

Thanks in advance,
 

%VDB_DIR% is an environment variable set somewhere else. It will probably translate to a directory name where the "vcshell" program is stored. Try typing 'env' at a command prompt to see all the current variables.
Everything else is passed as a parameter to the vcshell program.
--echo probably means send the output to the screen
--out looks like a path (again using %VDB_DIR% as directory name) to a text file called vcshell.txt
--db is a path to vcshell.db which may be a database as a guess
03_project_build.bat is another parameter but what it does would depend on the purpose of the vcshell program.

The parameters and their names are at the whim of the author of vcshell so you would need to find documentation on it to see their exact purpose. Have you tried typing "man vcshell" or "vcshell --help" to see if it has a manual entry of built-in help?

Brian.
 

Thanks Brian for the reply.

Please correct me if I am wrong.
My understanding is
03_project_build.bat is being executed from this folder ( %VDB_DIR%\vcshell )

and vcshell.txt and vcshell.db are the output files to be stored in --out and --db paths

Thanks
 

It depends on what the writer of vcshell decided. When the program is executed, the OS passes the parameters to it and from there they are used for whatever the writer decides. There is no standard for parameters but in general when you see '--' it signifies the start of source or destination path and the next parameter is the file name along that path.

Although there is no hard rules on file names, it is unusual to use one ending in '.bat' in Linux, they are more common in Windows environments.

Brian.
 

I see you like to cross post on multiple forums...

Although there is no hard rules on file names, it is unusual to use one ending in '.bat' in Linux, they are more common in Windows environments.
Highly unlikely this is on Linux. The directory hierarchy uses \, unless they are trying to port a windows batch command file to Linux I doubt this is being done on Linux.
 

I agree ads-ee, but this is posted in the "Linux Software" part of the forum.

Nevertheless, the rule applies that parameters passed to a program from the command line can be used in any way the program writer chooses and "vcshell" isn't a program I recognize or part of a normal Linux distro. Maybe 'vc' is something to do with Visual C, in which case it definitely isn't Linux :fight:

Brian.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top