Last active
December 12, 2015 01:08
-
-
Save maeharin/4688506 to your computer and use it in GitHub Desktop.
grepでand or 検索(正規表現を使う)
grep -e で古い正規表現。grep -E で拡張正規表現
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 -aF | grep -E '[^\.]+/$' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment