• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. how to get all the shell env value?

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 145
  • Views 21181
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

how to get all the shell env value?

llobak
llobak over 15 years ago

Hi,

 I know that we can read the shell env value by using getShellEnvVar("XYZ"). If i want to know ALL the shell env value, how can i do it with SKILL?   

 

Regards,

SL

  • Cancel
  • Quek
    Quek over 15 years ago
    Hi SL

    Please refer to COS solution 1843362. There is no single cmd to do it. One possible method is to first dump the output of a system("env") cmd in a file and then re-read the file.


    Best regards
    Quek
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • ahamlett
    ahamlett over 15 years ago
    procedure( allEnvVars()
    let( (i v time line)
    v = makeTable("v" nil) ; create an association table to hold all the shell variables and their values
    time = stringToTime(getCurrentTime()) ; get current time as number
    if(system(sprintf(nil "env > /tmp/%n" time)) == 0 then ; run env command
    if(i = infile(sprintf(nil "/tmp/%n" time)) then ; open temp file containing output from env command
    while(gets(line i) ; loop through output of env command
    line = parseString(line "= ")
    if(length(line) > 0 then
    ;v[car(line)] = cadr(line) ; get env var's value from "env" output
    v[car(line)] = getShellEnvVar(car(line)) ; get env var's value using skill
    )
    )
    close(i)
    else
    printf("error when opening temp file ")
    )
    else
    printf("error while running env ")
    )
    deleteFile(sprintf(nil "/tmp/%n" time))
    v
    )
    )
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • llobak
    llobak over 15 years ago

     Thanks for the help from both of you. Actually i've already tried the method before, but I'm facing some problem as some of the env value that i can get from getShellEnvVar() command, I could not get it in unix by typing env. Can anyone enlight me why is it so? Thanks in advance.

     

    Regards,

    SL

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 15 years ago
    Maybe the environment variables are being set by:

    a) the virtuoso/icfb command wrapper
    b) the virtuoso/icfb executable itself (or even some SKILL code)
    c) some wrapper command you use to launch virtuoso/icfb

    If you launch env from within icfb, it should inherit anything that icfb is seeing.

    Regards,

    Andrew.

    llobak wrote, on 03/11/10 21:02:
    > Thanks for the help from both of you. Actually i've already tried the
    > method before, but I'm facing some problem as some of the env value that
    > i can get from getShellEnvVar() command, I could not get it in unix by
    > typing env. Can anyone enlight me why is it so? Thanks in advance.
    >
    > Regards,
    >
    > SL
    >
    >
    >
    >
    > You received this email because you subscribed to notifications for the
    > Cadence Custom IC SKILL Forum. To unsubscribe, log in, go to forums, and
    > change your forum subscriptions.
    >
    > http://www.cadence.com/community/forums/ForumSubscriptions.aspx
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • llobak
    llobak over 15 years ago

     Hi Andrew,

     Thanks for your explanation. I finally get it now. haha.

    To others,

     Thanks for all your help!

    Regards,

    SL

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information