mirror of
https://github.com/miguelmota/cointop
synced 2024-11-05 00:00:14 +00:00
c3d5b7dda9
Former-commit-id: 18e721aca4da7f768e3a65c96495bd1f6e6c2a6f [formerly 18e721aca4da7f768e3a65c96495bd1f6e6c2a6f [formerly 85b0fd430987af4500f8efe33ea7ad4d95381e24 [formerly fa3c14e48d
]]]
Former-commit-id: d48d3f1fbd9c4ca3ccd7501c40544fae828f7a7d
Former-commit-id: 2d7c78ab13985ec3a2e8ee31efb151a65a97d487 [formerly bb22702742b3b3f8b096f366af53b400b832978d]
Former-commit-id: 6bc29c05b4f8d556e8cdf156fea3840dff796ad8
9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "downloading..."
|
|
curl -s "https://github.com/miguelmota/cointop/raw/master/bin/cointop" -o cointop
|
|
echo "installing..."
|
|
chmod +x cointop
|
|
mv cointop /usr/local/bin/
|
|
echo "cointop installed."
|