Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が行うls -l | grep ^dと、現在のディレクトリ内のディレクトリのみがリストされます。
ls -l | grep ^d
私が知りたいのは、^d の文字 ^ が何を意味するかということです。
キャレット^とドル記号$は、それぞれ行頭と行末の空の文字列に一致するメタ文字です。grep は、「d」で始まる行のみに一致します。
^
$