-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2280
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
#!/bin/sh
$0=myname
$0
can not be changed in a portable way.
You appear to be trying to assign a new value to $0
in a sh
script.
There is no portable way to do this. Write around it, or switch to Bash.
If you instead wanted to compare the value of $0
, use a comparison like [ "$0" = "myname" ]
.
- Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!