#!/bin/csh
echo ""
ls
echo ""
echo "二のファイルを比較して"
echo "差分を表示します。"
echo ""
echo "Input File1"
set file1 = $<
echo ""
echo "Input File2"
set file2 = $<
echo ""
echo "重複している行は出力していません。"
echo ""
sort $file1 $file2 | awk '{print $1}' | uniq -u
echo ""
Comments