mirror of
https://github.com/cjbassi/gotop.git
synced 2025-04-29 13:49:00 +08:00
14 lines
251 B
Bash
Executable File
14 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=v1.0
|
|
|
|
download() {
|
|
curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/${1} > /usr/bin/gotop
|
|
chmod +x /usr/bin/gotop
|
|
}
|
|
|
|
arch=$(uname -sm)
|
|
case "$arch" in
|
|
Linux\ *64) download gotop-linux_amd64 ;;
|
|
esac
|