-
Notifications
You must be signed in to change notification settings - Fork 3
/
update_notebooks.sh
67 lines (59 loc) · 1.93 KB
/
update_notebooks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
# behavior depends on scripts directory's presence
if [ -d "$PWD/scripts" ]
then
# check for update flag
update=0
while test $# -gt 0
do
case "$1" in
-u|--update)
update=1
shift
;;
*)
echo "$1 is not an accepted option..."
shift
;;
esac
done
# perform update if requested
if [ $update -ne 0 ]
then
# check for each template's existance
for f in "$PWD"/templates/*.ipynb
do
# get basename of notebook
name=$(basename "$f")
# get difference between similarly named notebook in scripts folder
DIFF=$(diff "$f" "$PWD/scripts/$name" 2>/dev/null)
# get exit-code of diff
# *-------------------------------------------------------------------*
# | 0 | successful and no differences. systematically univeral |
# | 1 | successful and differences. systematically universal |
# | -1 | error (no file, etc.). error code is system dependent |
# | 2 | error (no file, etc.). error code is system dependent |
# *-------------------------------------------------------------------*
DIFFEXIT=$?
# check for error
if [ $DIFFEXIT -ne 0 ] && [ $DIFFEXIT -ne 1 ]
then
echo "$name was not found. Creating new file $name in scripts"
cp -- "$f" "$PWD/scripts/$name"
# if difference, add updated file
elif [ "$DIFF" != "" ]
then
echo "WARNING: The file $name is being overwritten..."
cp -- "$f" "$PWD/scripts/$name"
fi
done
else
cp -n "$PWD/templates"/*\.ipynb "$PWD/scripts/."
fi
else
# since there is no scripts directory, just make one and copy from templates
mkdir "$PWD/scripts"
cp "$PWD"/templates/*\.ipynb "$PWD/scripts/."
fi
# recursively copy the images from templates to scripts (Jupyter isn't good with relative paths...)
cp -r "$PWD"/templates/img "$PWD/scripts/."