mirror of
https://github.com/tun2proxy/tun2proxy.git
synced 2025-04-24 07:46:03 +00:00
11 lines
298 B
Bash
Executable file
11 lines
298 B
Bash
Executable file
#!/bin/bash
|
|
|
|
curl -s https://api.github.com/repos/cross-rs/cross/releases/latest \
|
|
| grep cross-x86_64-unknown-linux-gnu.tar.gz \
|
|
| cut -d : -f 2,3 \
|
|
| tr -d \" \
|
|
| wget -qi -
|
|
|
|
tar -zxvf cross-x86_64-unknown-linux-gnu.tar.gz -C /usr/bin
|
|
rm -f cross-x86_64-unknown-linux-gnu.tar.gz
|
|
|