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 | |
# | |
# chkconfig: - 89 11 | |
# description: serf daemon | |
# processname: serf | |
# config: /etc/serf.conf | |
# Default-Start: | |
# Default-Stop: 0 1 2 3 4 5 6 | |
# Description: serf agent daemon |
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 | |
# | |
# chkconfig: - 89 11 | |
# description: serf daemon | |
# processname: serf | |
# config: /etc/serf.conf | |
# Default-Start: | |
# Default-Stop: 0 1 2 3 4 5 6 | |
# Description: serf agent daemon |
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
#compdef vbuilder | |
typeset -A opt_args | |
_arguments \ | |
"--version[set \[version\]]:keyword:(4.2 5.0 VineSeed)" \ | |
"--arch[set \[arch\]]:keyword:(i386)" \ | |
"--dist-upgrade[make VineSeed bootstrap via 5.0]" \ | |
"--target[build rpms with \[target\]]" \ | |
"--with-compat32[build rpms with compat32 on bootstrap]" \ |
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
#compdef pkg | |
typeset -A opt_args | |
local context state line | |
_arguments -s -S \ | |
"(-R)--help[Displays a usage message.]" \ | |
"(--help)-R+[dir]:package directory:_files -/" \ | |
"1:package:(version purge-history rebuild-index)" \ | |
&& return 0 |
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をPATHに追加する | |
PATH=~/bin:$PATH | |
export PATH | |
## alias | |
# 共通 | |
alias eng='LANG=C LANGUAGE=C LC_ALL=C' | |
# OS依存 | |
case "${OSTYPE}" in | |
freebsd*|darwin*) |