-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTODO
22 lines (14 loc) · 1.03 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ESC ESC -> sudo the command
ESC ESC -> menu to choose which server to ssh to (c.f. ~/.ssh/config)
Make `start` / `stop` / `restart` check the current dir if ran with no arg (e.g. useful to start a ruby-on-rails or whatever server).
---
sudo ln -s /usr/share/dotfiles/shortcuts /usr/share/applications/_user
Listing available one-letter aliases...
---------------------------------------
for letter in {a..z}; if command -v $letter &>/dev/null; then echo -e "\e[31m *** Command '$letter' exists. ($(command -v $letter))\e[0m"; else; echo -e "\e[32m --- Command '$letter' available.\e[0m"; fi
Listing available one-letter git aliases...
-------------------------------------------
for letter in g{a..z}; if command -v $letter &>/dev/null; then echo -e "\e[31m *** Command '$letter' exists. ($(command -v $letter))\e[0m"; else; echo -e "\e[32m --- Command '$letter' available.\e[0m"; fi
Listing stuff from fish
-----------------------
for file in ~/.fish/functions/*; [ ! -e ~/.bin/$(basename $file .fish) ] && echo " >> \`$file\` has no equivalent."