16
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bash - 隠しファイルのみ表示

Last updated at Posted at 2015-09-04

通常lsコマンドに-aオプションをつけて実行すれば隠しファイル 列挙してくれる。

が、隠しファイルになっているコンフィグ系ファイルもそれ以外のファイルフォルダもがたくさんあるホームディレクトリなどでls -laとやるとページャにパイプするかマウスホイールでスクロールしないと隠しファイルが確認出来ないことがままあってモヤモヤしてた。

追記:heliac2000 さんにもっとシンプルな方法を教えて貰ったのでそちらをここに追記。

$ ls -ld .*

追記ここまで。

結論としてはこれでいけた。

$ ls -ld `ls -a | grep -e "^\..\+$"`

エイリアスに設定しようと思ったがエスケープ関係がわけわかめになるので関数定義した。

.bash_profile
function llaa() {
    ls -ld `ls -a | grep -e "^\..\+$"`
}

行末指定の$は要らないかな。

16
13
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?