·2,447,543篇论文数据,部分数据来源于NoteExpress
Some versions of the ls tool have the -c option, which sorts by the time of file modification, showing the most recently modified files first.
有些版本的ls工具具有- c选项,它可以按照文件修改的时间进行排序,最先显示最后修改的文件。
For example, type ls [a-c] to find the files named a, b, and c.
例如,键入ls [a - c]以查找名为a、b或c的文件。
Typing ls [a-c]* finds all file names that begin with a, b, or c. Here, the * does not modify the [a-c] as grep's interpreter would; in the shell, * is interpreted as .*.
键入 ls [a-c]* 以查找以 a、b 或 c 开头的所有文件名。 此处的 * 在 Shell 中不像 grep 的解释器那样修饰 [a-c],* 被解释为 .*。?
应用推荐