-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinterpAssign.sh
executable file
·52 lines (41 loc) · 1.5 KB
/
interpAssign.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
#!/bin/sh
usage(){
echo -e "\n\tUSAGE: ./`basename $0` /path/to/xgap/root/dir /path/to/python3.X/interpreter\n"
exit
}
if [ $# -ne 2 ]
then
echo -e "\n\tERROR: Please refer to the proper usage shown below and provide 2 input args\n"
usage
fi
if [ ! -d "$1" ]
then
echo -e "\n\tERROR: INVALID PATH to xgap's directory or directory dosen't exist; please provide valid path to xgap's ROOT directory\n"
exit
elif [ ! -f "$2" ]
then
echo -e "\n\tERROR: INVALID PATH to python3.X interpreter or file dosen't exist\n"
exit
fi
XGAPPATH=${1}
PYPATH="#!${2}"
INITF=__init__.py
CHKPTF=checkpoint.py
SETUF=setup_utils.py
if [ -f $XGAPPATH/bin/xgap ]
then
hashbang=$(awk 'NR==1{print;exit}' $XGAPPATH/bin/xgap)
echo -e "\n\tReplacing $hashbang with $PYPATH in file ${XGAPPATH}/bin/xgap\n"
sed -i'' -e "1 s|$hashbang|$PYPATH|" $XGAPPATH/bin/xgap
else
echo -e "\n\tERROR: the path to xgap's directory is NOT the path path to xgap's ROOT directory! Please provide path to xgap's ROOT directory\n"
fi
for path in $(find ${XGAPPATH}/xgap/ -type f -name '*.py'); do
if [[ "$INITF" != "`basename ${path}`" ]] && [[ "$CHKPTF" != "`basename ${path}`" ]] && [[ "$SETUF" != "`basename ${path}`" ]] && [[ "$(find ${XGAPPATH}/xgap/scheduler/ -type f -name '*.py')" != *"${path}"* ]]
then
hashbang=$(awk 'NR==1{print;exit}' $path)
echo -e "\tReplacing $hashbang with $PYPATH in file $path\n"
sed -i'' -e "1 s|$hashbang|$PYPATH|" $path
fi
done
echo -e "\n\tSuccessfully Completed!\n"