You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
#case "$1" in
|
||
|
# pre)
|
||
|
# /home/cole/g14gpu/gpuon.sh ;;
|
||
|
# post)
|
||
|
# /home/cole/g14gpu/gpuoff.sh ;;
|
||
|
#esac
|
||
|
|
||
|
|
||
|
if [ "${1}" == "pre" ]; then
|
||
|
bash /home/cole/g14gpu/gpuon.sh
|
||
|
elif [ "${1}" == "post" ]; then
|
||
|
bash /home/cole/g14gpu/gpuoff.sh
|
||
|
fi
|