mirror of
https://github.com/miguelmota/cointop
synced 2024-11-05 00:00:14 +00:00
fd2b4d9c79
Former-commit-id: 54ba9a85904c39ad7885d6cea1ae688e2263903c [formerly 54ba9a85904c39ad7885d6cea1ae688e2263903c [formerly 98e09706197dbbb1f5145e8e533c1cfa1dc5ceec [formerly c687cbc3ab
]]]
Former-commit-id: 1b92bdbeb8e0e875a2153b8e25fdab5535289950
Former-commit-id: 30c6f74a5e0704d6ff274a5157d58dacd419cf28 [formerly f7b540e69d18f9d7ddd60b70dbc6b417d2d0bc82]
Former-commit-id: 0d7fff2c5503df20ff7cc01858fde56f43b4339d
16 lines
278 B
Bash
Executable File
16 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "downloading..."
|
|
|
|
BIN="cointop32"
|
|
if [ $(uname -m) == 'x86_64' ]; then
|
|
BIN="cointop64"
|
|
fi
|
|
|
|
wget "https://github.com/miguelmota/cointop/raw/master/bin/$BIN" -O cointop
|
|
|
|
echo "installing..."
|
|
chmod +x cointop
|
|
mv cointop /usr/local/bin/
|
|
echo "cointop installed."
|