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.
11 lines
298 B
11 lines
298 B
#!/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
|
|
|
|
|