As configured in my dotfiles.
start new:
tmux
start new with session name:
| git fetch --prune origin "+refs/tags/*:refs/tags/*" |
| #!/bin/sh | |
| # Backup | |
| git ls-remote backup --quiet | |
| if test $? = 0; | |
| then | |
| git push backup --force --all --quiet | |
| echo "...Backuped" | |
| else | |
| echo "No Backup repository => Skip backup" |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/sh | |
| # | |
| # nginx - this script starts and stops the nginx daemin | |
| # | |
| # chkconfig: - 85 15 | |
| # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ | |
| # proxy and IMAP/POP3 proxy server | |
| # processname: nginx | |
| # config: /usr/local/nginx/conf/nginx.conf | |
| # pidfile: /usr/local/nginx/logs/nginx.pid |