mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
7 lines
141 B
Plaintext
7 lines
141 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
echo "downloading cheatsheet"
|
||
|
curl https://cht.sh/:cht.sh > ~/.local/bin/cheat
|
||
|
chmod 755 ~/.local/bin/cheat
|
||
|
echo "cheatsheet ✓"
|