各種日常命令一點一點學習總結
git生成key
ssh-keygen -t rsa -c "[email protected]"
mysql中選出一列裡不重複的值
select distinct 列名 from 表名
後台執行乙個指令碼,並且寫到nohup.out
檔案中
$ nohup /bin/php /crontab.php &
在配置yii2的路由規則,nginx的rewrite配置
location /
}
檢視nginx狀態
$ nginx -t -c nginx
打包
$ tar -jcv -f filename.tar.bz2 filename
為全系統設定alias
$ vim /etc/profile
為單使用者設定alias
(mac下,linux略有不同)
$ vim ~/.bash_profile
自己總結的Vim日常使用指令
vim使用手冊 q 退出,q!強制退出 w 儲存 wq 儲存並退出 e!放棄所有修改並開啟原始檔 dd 刪除一行 x 刪除乙個字元 v 進入視覺化 d 剪下 y 複製,yy複製當前行 p 貼上 u 撤銷 ctrl r 撤銷撤銷操作 e 跳到單詞末尾 b 跳到單詞首部 g 跳到檔案首部 shift g...
Git日常指令總結
初始化建立倉庫 git init 檢視歷史版本 git log 帶引數的這個可以只看版本號和提交的版本資訊 git log pretty oneline 檢視當前快取區狀態 git status 將所有修改新增到快取區 git add a 提交版本 git commit m this is a ve...
mysql日常使用總結
1.在mysql中 double型別字段 不能指定長度,如 alter table pur purchase item config history change column safe stock day safe stock day double 20 not null comment 安全水位...