各种日常命令一点一点学习总结
Git生成KEY
ssh-keygen -t rsa -C "youremail@example.com"
MySQL中选出一列里不重复的值
SELECT DISTINCT 列名 FROM 表名
后台执行一个脚本,并且写到nohup.out
文件中
$ nohup /bin/php /crontab.php &
在配置Yii2的路由规则,Nginx的Rewrite配置
location / {
if (!-e $request_filename){
rewrite ^/(.*) /index.php last;
}
}
查看Nginx状态
$ nginx -t -c nginx
打包
$ tar -jcv -f filename.tar.bz2 filename
为全系统设定alias
$ vim /etc/profile
为单用户设定alias
(Mac下,Linux略有不同)
$ vim ~/.bash_profile