I have a bash script which takes in user input and passes it to a tcl script.
The issue is that once I run the script, and the second tcl script is called, upon running the ps -f
command, I can see the tcl script instantiation with the arguments passed (all this is in clear text). How can I hide the arguments from appearing in the ps -f
output. I was thinking of shuffling and recreating the passed variables, but is there a way of completely hiding them from the ps -f
output?