Linux的test
命令本身不区分大小写,但是在比较字符串时,它会区分大小写
例如,以下命令将检查两个文件名是否相同(不区分大小写):
test "$(basename /path/to/file1)" = "$(basename /path/to/file2)"
但是,如果你使用-i
选项进行不区分大小写的比较,如:
test -i "$(basename /path/to/file1)" = "$(basename /path/to/file2)"
这将返回一个不区分大小写的比较结果。