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.

Can we use c-shell scripting commands in Design Compiler ?

Status
Not open for further replies.

cool_ic

Junior Member level 1
Joined
May 7, 2009
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,378
shell scripting commands

Can we use c-shell scripting commands in Design Compiler (ie. dc_shell) ? if so How ??
 

synopsys design compiler shell script

What ever the script which is executable in unix shell can be executed in any of the synopsys tools using the exec
example cshell script abc.csh::
#!/usr/bin/csh
<your script>


-----------
dc_shell> exec abc.csh
 

shell scripting why we use that

but it is showing an error as shown below
Error: Undefined operator on or near line 3 at or near 'exec'. (EQN-2)
 

eqn-21 design compiler

Hi,

I wrote a small shell program as below:

******test.csh*******

#!/bin/csh
echo "HELLO"

chmod 777 test.csh

in DC:
====
dc_shell-topo> sh test.csh
HELLO


Hope this helps!!!

Thanks,
Daman
 

dc compiler shell scripting

it just can prove that echo can be used in DC

If you wanna use some other command try this:

dc_shell-t> sh mkdir test

etc.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top