I have lots of directories with a single file in them. The presence of .DS_Store files makes filename completion a little awkward. How do I tell bash to ignore .DS_Store files when I hit tab?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
A better method is to also exclude the other things that might already be in FIGNORE using
export FIGNORE="$FIGNORE:DS_Store"
回答2:
Add this line to your .bash_profile
file:
export FIGNORE=DS_Store