How to run copied CLI commands with a leading “$” sign
stefanjudis.com
How to run copied CLI commands with a leading “$” sign
1–3 of 3 posts
Re: How to run copied CLI commands with a leading “$” sign
#2should be the following otherwise args get splitted
"$@"
and should be the following because no reason to have a shell stay open after its finished doing work exec "$@"Re: How to run copied CLI commands with a leading “$” sign
#3should be the following otherwise args get splitted "$@" and should be the following because no reason to have a shell stay open after its finished doing work exec "$@"
Thanks. That's great feedback. I updated the post.