Skip to content

Instantly share code, notes, and snippets.

@songfei1983
Last active August 29, 2015 14:28
Show Gist options
  • Save songfei1983/4df99491ff8895696406 to your computer and use it in GitHub Desktop.
Save songfei1983/4df99491ff8895696406 to your computer and use it in GitHub Desktop.
lsでディレクトリのみ,ファイルのみ,表示する
// ディレクトリのみ
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