Created
December 19, 2018 02:55
-
-
Save QGB/a99d9339a4f1fd648551f887ea2c44cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shell@HS8917QC:/ $ [ "$pyPath" != "" ] || echo 233 | |
233 | |
shell@HS8917QC:/ $ | |
shell@HS8917QC:/ $ env|grep qs | |
qscript=//qshell | |
qsPath=// | |
shell@HS8917QC:/ $ unset qsPath | |
shell@HS8917QC:/ $ [ "$pyPath" != "" ] || echo 233 #不能检测 环境变量 | |
233 | |
shell@HS8917QC:/ $ env|grep qs | |
qscript=//qshell | |
shell@HS8917QC:/ $ | |
&& 也不行。。??? | |
1|shell@HS8917QC:/ $ [ "$pyPath" == "" ] && echo 233 | |
233 | |
shell@HS8917QC:/ $ | |
shell@HS8917QC:/ $ env|grep qs | |
qscript=//qshell | |
shell@HS8917QC:/ $ export qsPath=1 | |
shell@HS8917QC:/ $ [ "$pyPath" == "" ] && echo 233 | |
233 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment