start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| # | |
| # script to automatically set the permission for the cache and logs folder | |
| # for a new symfony2 project. | |
| # original code taken from the documentation pages: | |
| # http://symfony.com/doc/current/book/installation.html | |
| BASEFOLDER=""; | |
| if [ "$1" != "" ]; then | |
| BASEFOLDER="$1"; |