You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- #!/bin/bash
-
- if [ $# -ne 0 ] ; then
- cat << EOF | rshell
- cp pico.py /pyboard
- cp util.py /pyboard
- cp $1 /pyboard/main.py
- EOF
- else
- cat << EOF | rshell
- cp pico.py /pyboard
- cp util.py /pyboard
- cp life.py /pyboard
- EOF
- fi
|