Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
See also: Sublime Text Keyboard Shortcuts at SuperUser.
| Ctrl+.. | show command palette |
<!—
| df -P file/goes/here | tail -1 | cut -d' ' -f 1 |
| usermod -a -G groupname username |
| addgroup zburbach | |
| addgroup --gid 1002 zburbach # with specific gid |
| netstat -lptan | |
| netstat -lptu | |
| netstat -lptun | |
| # -l listen | |
| # -p process name | |
| # -t tcp | |
| # -a established connections | |
| # -n numeric addresses | |
| # -u udp |
| kill -s SIGUSR1 $(pidof /usr/sbin/dnsmasq) |
| dhclient -r # release | |
| dhclient # get ip |
| find . -type f | wc -l |
| ls -l | egrep -v '^d' # files | |
| ls -l | egrep '^d' # directories | |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
See also: Sublime Text Keyboard Shortcuts at SuperUser.
| Ctrl+.. | show command palette |
<!—