blob: bbda76c7229f95d751e2a8d3d92686c85245a4fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
idate=$(date +"%s" -r .git/index)
odate=$(date +"%s" -r ./.updated)
echo $idate
echo $odate
if (( $idate > $odate )); then
echo "frig"
touch ./.updated
fi
|