summaryrefslogtreecommitdiffstats
path: root/scripts/tps-profile-diff.sh
blob: 8cfb40a7e59c03dad0bec74c15e5a13c47f70106 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

ORIG_DIR=~/tps/profiles/orig
NEW_DIR=~/tps/profiles/new

list=`cd $ORIG_DIR; ls`
for name in $list; do
    echo Comparing $name
    diff  $ORIG_DIR/$name $NEW_DIR/$name
done