随笔分类 - [01]LINUX
摘要:/** * 判断是否十六进制颜色 * @param $str * @return int */ public static function checkColor($str) { $search = '/^#([a-fA-F\d]{6}|[a-fA-F\d]{3})$/'; if (preg_mat
阅读全文
摘要:# sudo composer require doctrine/instantiator <?php require 'vendor/autoload.php'; require_once 'hello.php'; // 如果不存在,将报错 // class hello { // public f
阅读全文
摘要:先备份 sudo mv /etc/apt/sources.list /etc/apt/sources.list.backup 新建 sudo vim /etc/apt/sources.list 更改为清华源 #清华源 deb https://mirrors.tuna.tsinghua.edu.cn/
阅读全文
摘要:# 判断是否启动了Redis,仅作为提醒 REDIS_PIDS=$(ps -ef | grep redis | grep -v grep | awk '{print $2}') if [ "$REDIS_PIDS" = "" ]; then Echo_Yellow "Redis is not run
阅读全文
摘要:本来1 >屏幕 (1指向屏幕) 执行>log后, 1 >log (1指向log) 执行2>&1后, 2 >1 (2指向1,而1指向log,因此2也指向了log) 通常放到后面!!! cnpm install >> $all_log_file 2>&1 # 将标准错误也输出到log中 , 2>&1 意
阅读全文
摘要:InstallWhileHostsExist="" Echo_Yellow "Do you want to continue install?" read -p "Default continue,Enter your choice [Y/n]: " InstallWhileHostsExist c
阅读全文
摘要:# 判断是否安装了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
阅读全文
摘要:添加并保存 查看
阅读全文
摘要:1、下载 2、解压 3、更改文件夹名字 4、增加软连接 5、检查
阅读全文
摘要:我曹!不用每次都调整了,烦死了!!!
阅读全文
摘要:通过日志,能够快速定位问题! 查看cron是否开启! 重启
阅读全文