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.
パターン (予告編) を検索しようとしていますが、ファイル内に複数回出現する場合は、それらのファイル名を表示する必要があります
for f in *.txt do if((tail -n 1 $f | grep '[9][9][9]*' | wc -l) -ge 2); then echo " The file $f has more than one trailer" fi done