Bash 变量:区分大小写?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/15571706/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-18 04:57:25  来源:igfitidea点击:

Bash variables: case sensitive or not?

linuxbashshellcase-sensitivevariable-names

提问by Mario

Is bash shell scripting case sensitive?

bash shell 脚本是否区分大小写?

Is variable datethe same as DATE?

变量dateDATE?

回答by John Kugelman

Yes, it is case sensitive, just like the rest of UNIX. $dateand $DATEare two different variables. makefileand Makefileare two different files. -hand -Hare two distinct flags (usually).

是的,它区分大小写,就像 UNIX 的其余部分一样。$date$DATE是两个不同的变量。makefile并且Makefile是两个不同的文件。-h-H是两个不同的标志(通常)。