该文被密码保护。 阅读全文
摘要:
# sqlversion.php sqlversion_file=${cur_dir}/web-admin/sql_version/sqlversion.php sed -i "s#^\$db_host.*;#\$db_host='${DB_HOST}';#g" $sqlversion_file s 阅读全文
摘要:
# 判断是否安装了node if ! type node >/dev/null 2>&1; then echo 'node 未安装'; else echo 'node 已安装'; fi # 判断是否安装了npm if ! type npm >/dev/null 2>&1; then Echo_Red 阅读全文
摘要:
function colorize($text, $status) { $out = ""; switch ($status) { case "SUCCESS": case "Green": $out = "[32m"; //Green break; case "FAILURE": case "Re 阅读全文
摘要:
shell #!/bin/bash host=${DB_HOST} dbname=${DB_NAME} user=${DB_USER} pwd=${DB_PWD} # 只能通过单字母传参数 create_res=`php ${cur_dir}/init/createdb.php -h $host - 阅读全文
摘要:
Color_Text() { echo -e " \e[0;$2m$1\e[0m" } Echo_Red() { echo $(Color_Text "$1" "31") } Echo_Green() { echo $(Color_Text "$1" "32") } Echo_Yellow() { 阅读全文
摘要:
# nginx 初始化,父脚本中的变量会自动传入引入的脚本中 . init/nginx.sh 子脚本内容 #!/bin/bash # 生成nginx配置 # cur_dir=$(pwd) # cur_dir=$(dirname $(pwd)) # input_name=demo # input_do 阅读全文
摘要:
1 dash中 echo 'hello\nworld' 将会输出 hello world 2 bash中 echo 'hello\nworld' 将会输出 hello\nworld 一般情况下 /bin/sh 被软链到 /bin/dash,偶尔也会遇到有人把 /bin/sh 软链到 /bin/bas 阅读全文
摘要:
当前目录 cur_dir=$(pwd) 上级目录 cur_dir=$(dirname $(pwd)) 阅读全文