the-carlisle-group / Dado

DevOps for Dyalog APL
MIT License
16 stars 3 forks source link

Enhance ProcessOpenArg to support system variables #78

Closed norberturkiewicz closed 2 years ago

norberturkiewicz commented 4 years ago
ProcessOpenArg←{
     b←' -f'≡¯3↑⍵
     p←↑⎕CMD'echo ',(bׯ3)↓⍵
     p b
 }
norberturkiewicz commented 4 years ago

This is better

 ProcessOpenArg←{
     b←' -f'≡¯3↑⍵
     ⎕USING←,⊂⍕'System'
     p←Environment.ExpandEnvironmentVariables(bׯ3)↓⍵
     p b
 }