Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
比如通过文件扩展名?
例如,我不想查看 .DS_STORE 文件,但我想查看所有 .htaccess 文件。有没有办法做到这一点?
打开终端并输入
ls -a | grep -G .YOUR_EXTENSION$
有关正则表达式的更多信息,请参见http://www.robelle.com/smugbook/regexpr.htmlman grepman ls
man grep
man ls