mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-07-31 15:22:01 +08:00
13 lines
274 B
Bash
13 lines
274 B
Bash
#!/bin/bash
|
|
# Exit immediately if a command exits with a non-zero status.
|
|
set -e
|
|
# Enable the globstar shell option
|
|
shopt -s globstar
|
|
|
|
wget http://downloads.arduino.cc/arduino-1.8.13-linux64.tar.xz
|
|
|
|
tar xf arduino-1.8.13-linux64.tar.xz
|
|
|
|
mv arduino-1.8.13 $HOME/arduino_ide
|
|
|