日常使用指令总结

各种日常命令一点一点学习总结

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

    原文作者:niceforbear
    原文地址: https://segmentfault.com/a/1190000004550422
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞