<@U02UAUGSQ22> (<@U01819B63HP>): Apparently there...
# xschem
t
@Harald Pretl (@Stefan Schippers): Apparently there is also a problem in Mac OS when xschem runs the command
set ps_status [exec ps -o s= [pid $execute(pipe,$id)]]
(xschem.tcl line 221). ChatGPT claims that the correct arguments for
ps
on the Mac should be
set ps_status [exec ps -o state= -p [pid $execute(pipe,$id)]]
. Since the Linux version of
ps
accepts both forms of arguments, I would suggest that the form that works correctly on the most operating systems is the one that should be used in the statement.
🌍 1
s
@Tim Edwards Thank you for pointing that out. WIll do the change.
h
“ChatGPT claims…” 🙂
t
I never take ChatGPT's word for anything, but it's easy to use, knows a lot of trivia, and is usually right.