checkValidity.sh 161 Bytes
 1
 2
 3
 4
 5
 6
 7
 8
 9
#!/bin/bash
while read line
do
src=`echo $line | cut -d " " -f 2`
des=`echo $line | cut -d " " -f 3`
if [ "$src" = "$des" ]; then
echo $line
fi
done < $1