Blame view
templates/gstar_master (copy)/checkValidity.sh
161 Bytes
6a9412d84 fixing ip less th... |
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 |