This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
MODDATE=$(stat -c %Y ~/Documents/timetracker2/timetracker2.db) | |
MODDATE=${MODDATE%% *} | |
while [ : ] | |
do | |
sleep 180 | |
echo $(date ) | |
MODDATE2=$(stat -c %Y ~/Documents/timetracker2/timetracker2.db) | |
MODDATE2=${MODDATE2%% *} | |
if [ $MODDATE -eq $MODDATE2 ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://gist.github.com/ziadoz/3e8ab7e944d02fe872c3454d17af31a5 | |
# https://gist.github.com/birdsarah/23312f1d7cbd687ac376c95662254773 | |
# This script checks & downloads latest chromeDriver and geckoDriver IF needed. | |
# New drivers are extracted and copied to $driversDestination | |
# IMPORTANT: Remember to change $driversDestination variable below to match your case | |
# You can call this script before launching your test suite so you always get latest drivers each run | |
os=linux64 | |
driversDestination=../dependencies/browser-drivers/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test 1 |