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 | |
| month=`date +"%m"` | |
| function 30days { | |
| echo -n "ダウンタイムを入力してください: " | |
| read worktime | |
| echo "scale=4; ( 43200 - $worktime ) / 43200 * 100" | bc | cut -c 1-5 | |
| } | |
| function 31days { | |
| echo -n "ダウンタイムを入力してください: " | |
| read worktime |
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
| PATH=/usr/local/mysql/bin:$PATH | |
| if [ -f ~/.bashrc ] ; then | |
| . ~/.bashrc | |
| fi | |
| export CLICOLOR=1 | |
| export LSCOLORS=DxGxcxdxCxegedabagacad | |
| export PATH=/usr/local/bin:$PATH | |
| export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
| export PATH=/usr/local/bin:/usr/local/sbin:$PATH | |
| export PATH=$PATH:~/bin/depot_tools |
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
| PATH="$PATH":/Users/tea_hugutaku/shell | |
| PATH="$PATH":/usr/local/sbin | |
| export HOMEBREW_EDITOR=/usr/bin/vim | |
| export PATH=/usr/local/bin:/usr/local/sbin:$PATH | |
| alias vi='/usr/bin/vim' |
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
| if has('vim_starting') | |
| set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
| endif | |
| call neobundle#rc(expand('~/.vim/bundle/')) | |
| NeoBundleFetch 'Shougo/neobundle.vim' | |
| filetype plugin indent on | |
| NeoBundleCheck | |
| " カーソル行をハイライト |
NewerOlder