This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # =============== # | |
| # Unity generated # | |
| # =============== # | |
| [Tt]emp/ | |
| [Oo]bj/ | |
| [Bb]uild | |
| [Ll]ibrary/ | |
| sysinfo.txt | |
| # ===================================== # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| dir=$1 | |
| files=`find $dir -type f`; | |
| for i in $files | |
| do | |
| dir_name=`dirname $i`; | |
| ori_filename=`basename $i` | |
| new_filename=`echo $ori_filename | tr [:upper:] [:lower:]` > /dev/null; | |
| mv $dir_name/$ori_filename $dir_name/$new_filename |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author: Picker | |
| # Date: 2012/02/01 | |
| # General Setting | |
| set-option -g prefix C-a | |
| set-window-option -g automatic-rename off | |
| set -g history-limit 5000 | |
| # Highlight active window | |
| set-window-option -g window-status-current-bg red |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| openssl genrsa -out myserver.key 1024 | |
| mv myserver.key myserver.key.raw | |
| # Remove the password | |
| openssl rsa -in myserver.key.raw -out myserver.key | |
| # Remove the old key | |
| rm -f myserver.key.raw | |
| chmod 400 myserver.key | |
| openssl req -new -key myserver.key -out myserver.csr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| while read line | |
| do | |
| dirname ${line} | |
| done < $1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| nnoremap <F2> :NERDTreeToggle<CR> | |
| nnoremap <F3> :call ToggleSketch()<CR> | |
| nnoremap <F12> :TlistToggle<CR> | |
| """""""""""""""""""""""""" | |
| " Source Explorer Plugin " | |
| """""""""""""""""""""""""" | |
| nnoremap <F4> :SrcExplToggle<CR> | |
| " // Set the height of Source Explorer window |