Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- #!/bin/bash
-
- if [ x$1 = "xclean" ]; then
- echo Cleaning
- echo
- cd wiringPi
- make clean
- cd ../gpio
- make clean
- cd ../examples
- make clean
- cd ..
- elif [ x$1 = "xuninstall" ]; then
- echo Uninstalling
- echo
- echo "WiringPi library"
- cd wiringPi
- sudo make uninstall
- echo
- echo "GPIO Utility"
- cd ../gpio
- sudo make uninstall
- cd ..
- else
- echo wiringPi Build script - please wait...
- echo
- echo "WiringPi library"
- cd wiringPi
- make
- sudo make install
- echo
- echo "GPIO Utility"
- cd ../gpio
- make
- sudo make install
- echo
- echo "Examples"
- cd ../examples
- make
- cd ..
- fi
-
- echo
- echo All Done.
|