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.
当我ls在 bash 中执行时,我总是看到太多*.pyc文件。有没有办法隐藏这些文件?
ls
*.pyc
这种方式是黑暗的一面,但你可以ls通过添加类似的东西来强制永远不要展示它们
alias ls='ls --hide="*.pyc"'
到你的.bashrc. 如果您使用或ls将显示隐藏文件。-a-A
.bashrc
-a
-A
但是,我建议您在脑海中忽略它们,或者ls在您真的不想看到它们时运行此版本。