mirror of
https://github.com/RoganDawes/P4wnP1_aloa.git
synced 2025-04-02 00:53:16 +02:00
8 lines
320 B
Bash
Executable File
8 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
wget https://storage.googleapis.com/golang/go1.9.linux-armv6l.tar.gz
|
|
sudo tar -C /usr/local -xzf go1.9.linux-armv6l.tar.gz
|
|
export PATH=$PATH:/usr/local/go/bin # put into ~/.profile
|
|
echo export PATH=$PATH:/usr/local/go/bin >> ~/.profile
|
|
sudo bash -c 'echo export PATH=\$PATH:/usr/local/go/bin >> ~/.profile'
|