-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC3016
Lawrence Velázquez edited this page Mar 9, 2024
·
2 revisions
#!/bin/sh
if [ -v STY ]
then
echo "STY is set, you are using screen"
fi
Either switch to bash or ksh, or use:
#!/bin/sh
if [ -n "${STY+x}" ]
then
echo "STY is set, you are using screen"
fi
Your script uses a shell feature not supported by the shebang. Either rewrite the script to be portable, or change the shebang to explicitly require a shell like Bash.
In this case, [ -v variable ]
, which checks if a variable is set, is not specified by POSIX. It can be replaced with the portable [ -n "${variable+x}" ]
, which uses the "alternative value if set" parameter expansion syntax to accomplish the same thing.
None
- Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!