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.
私は ksh (Solris SunOS 5.10) を使用しています。
変数 $VAR があり、変数が dd.mm.yyyy の形式に一致する場合にのみコードを実行する if を書きたい
例: 01.01.2009、05.12.1998 など。
これどうやってするの?
if [[ "${VAR}" == [0-9][0-9]\.[0-9][0-9]\.[0-9][0-9][0-9][0-9] ]]; then echo "Variable matches format dd.mm.yyyy" fi