Last active
August 29, 2015 14:28
-
-
Save songfei1983/4df99491ff8895696406 to your computer and use it in GitHub Desktop.
lsでディレクトリのみ,ファイルのみ,表示する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ディレクトリのみ | |
ls -F | grep / | |
// ファイルのみ | |
ls -F | grep -v / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment