We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, when I run the following program (sleep.sh)
sleep.sh
#!/bin/bash sleep 1 sleep 1 sleep 1 sleep 1 sleep 1 sleep 1 echo "done"
(compiled using shc -f sleep.sh && mv sleep.sh.x sleep && ./sleep)
shc -f sleep.sh && mv sleep.sh.x sleep && ./sleep
I can see the contents of the program when I run ps -ax | grep sleep, alongside a LOT of whitespace:
ps -ax | grep sleep
Is there a way to avoid this?
I would ideally only want to see ./sleep in ps output if possible
./sleep
ps
The text was updated successfully, but these errors were encountered:
Give it a try shellc. Can solve your problem
Sorry, something went wrong.
No branches or pull requests
Hi, when I run the following program (
sleep.sh
)(compiled using
shc -f sleep.sh && mv sleep.sh.x sleep && ./sleep
)I can see the contents of the program when I run
ps -ax | grep sleep
, alongside a LOT of whitespace:Is there a way to avoid this?
I would ideally only want to see
./sleep
inps
output if possibleThe text was updated successfully, but these errors were encountered: