解决rename不支持正则的问题

一句话命令 ...

October 13, 2017 · 1 min · Me

一个ss的安装脚本

这个脚本是写给小白和我用的,可以直接在centos上可以执行,使用方法很简单。 更新: 这个脚本已经很旧了,请移步 Centos7 系统一键安装 Shadowsocks 和 KCPTUN 加速 Ubuntu 系统一键安装 Shadowsocks 和 KCPTUN 加速 ...

March 9, 2017 · 1 min · Me

-etc-profile,-etc-bashrc等文件的区别与作用

当我们在做一些与bash相关的操作时,比如设置别名、登录启动项等,多多少少都会与下面几个文件打交道,用的时候一查,然后又忘了。好记性不如烂笔头,下面老高就帮你理一理这些文件到底是干啥的。 /etc/profile /etc/bashrc ~/.bash_profile ~/.bashrc ...

May 28, 2015 · 2 min · Me

Linux终端美化资源整理

配色方案 通用主题 https://github.com/chriskempson/tomorrow-theme.git https://github.com/altercation/solarized.git iterm2 Monokai-Soda 寻找主题方法 github里随便一搜就是一堆堆 https://github.com/search?q=iterm2+theme

April 29, 2015 · 1 min · Me

zsh-+-oh-my-zsh-默认shell的最佳替代品

项目地址 zsh —–> http://www.zsh.org oh-my-zsh —-> http://ohmyz.sh The last shell you’ll ever need! 使用方法 为你的MAC、Linux安装zsh # Centos yum install zsh git -y # OSX brew install zsh git -y 安装oh-my-zsh # via curl curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh # via wget wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O - | sh 设置zsh为系统默认shell # 为root用户修改默认shell为zsh chsh -s /bin/zsh root # 为当前用户修改默认shell为zsh chsh -s /bin/zsh # or chsh -s `which zsh` # 恢复命令 chsh -s /bin/bash add to ~/....

April 29, 2015 · 1 min · Me

centos6-优化脚本与安全脚本

新装的机子执行一下,请酌情使用,出问题后果自负。 优化设置 This script is only for 64bit Operating System ! 64位系统专用,老高有修改 #!/bin/bash #author suzezhi #this script is only for CentOS 6 #check the OS platform=`uname -i` if [ $platform != "x86_64" ];then echo "this script is only for 64bit Operating System !" exit 1 fi echo "the platform is ok" version=`lsb_release -r |awk '{print substr($2,1,1)}'` if [ $version != 6 ];then echo "this script is only for CentOS 6 !...

May 13, 2014 · 6 min · Me

开发中经常用到的代码

[TOC] 短链接 http://surl.sinaapp.com/引入百度CDN公共库 地址:http://t.cn/zYDC8wj引入文件 <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script src="http://libs.baidu.com/bootstrap/2.0.4/js/bootstrap.min.js"></script> <link href="http://libs.baidu.com/bootstrap/2.0.4/css/bootstrap.min.css" rel="stylesheet"> <script src="http://libs.baidu.com/jquerytools/1.2.7/jquery.tools.min.js"></script> PHP //申明页面编码开启session并设置时区 session_start(); header("Content-Type: text/html; charset=UTF-8"); ini_set('date.timezone','Asia/Shanghai'); // //windows下这个页面执行时间还是在php.ini里控制,修改max_execution_time。 set_time_limit(0); //获取变量的整数值 intval('adasdasd'); //heredoc==双引号 $name=MyName; echo <<<EOT My name is "$name". I am printing some $foo->foo. Now, I am printing some {$foo->bar[1]}. This should print a capital 'A': \x41 EOT; /* 以上例程会输出: My name is "MyName". I am printing some Foo. Now, I am printing some Bar2. This should print a capital 'A': A */ //Nowdoc==单引号 echo <<<'EOT' My name is "$name"....

March 3, 2014 · 4 min · Me