What the title says. In bash, when I do:

$ echo [a-z]
b t

What does b t mean? Is there a special meaning for the [ ] operators in this context?

有帮助吗?

解决方案

The [a-z] is a pattern that will match any file(s) whose name consists of a single letter. In your case, the current directory has two files named b and t. If there are no matching files, the pattern is treated as literal text, which is why others will see [a-z] printed.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top