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.
C シェル スクリプトへの引数としてファイルを送信する必要があります。ここで、拡張子が .xml のファイルか、拡張子が .xml のファイルのリストを含むファイルかを確認する必要があります。
これをテストする方法はありませんが、csh の過去の経験から、次のようなことがわかります。
#!/bin/csh file="$1" switch ("$file") case *.xml: echo "file matches .xml" breaksw default: if ( grep '\.xml$' "$file" ) then echo "xml file extensions found in $file" endif breaksw endswitch
動作するはずです。
IHTH