#!/bin/sh # Compare two files. Exit with 0 if they are the same, otherwise show # the diff and exit with status 1. f1="1ドル" f2="2ドル" if cmp -s "$f1" "$f2"; then # Yay. exit 0 fi diff "1ドル" "$f2" exit 1

AltStyle によって変換されたページ (->オリジナル) /