摘要:nginx: [emerg] BIO_new_file("/tmp/recorderApp/speech/cert.pem") failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/tmp
阅读全文
摘要:# ps -aux |grep speech |awk -F " " '{print $2}' |xargs kill -9 https://blog.csdn.net/liveway6/article/details/100192121
阅读全文
摘要:至于光标在两个窗口之前的切换,可以使用如下按键: Ctrl-w, l :光标切换到右侧的窗口 Ctrl-w, h :光标切换到左侧的窗口 Ctrl-w, w :光标在两个窗口间彼此切换
阅读全文
摘要:https://blog.csdn.net/qianggezhishen/article/details/51981804 <<'COMMENT' mkdir xxx balabalabala cd xxx COMMENT 在我们写 shell 脚本的时候,特别在调试的时候经常需要注释多行命令,但在
阅读全文
摘要:$ docker login --username=\$oauthtoken --password="yourkey" nvcr.io https://docs.docker.com/engine/reference/commandline/login/
阅读全文
摘要:set relativenumber or for short "set rnu" This starts the count from 0 https://stackoverflow.com/questions/1176326/vim-zero-indexed-line-numbers-in-se
阅读全文
摘要:vim, sublimetext http://www.sublimetext.cn/
阅读全文
摘要:If one file is named https://drive.google.com/file/d/1rdEsCUcIUaYOVRkx5IMTRNA7PcGMmSgc/edit It means its id is 1rdEsCUcIUaYOVRkx5IMTRNA7PcGMmSgc Then
阅读全文
摘要:$ bcbc 1.07.1Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software Foundation, Inc.This is free software with ABSOLUTELY NO
阅读全文
摘要:$ grep -r load . ./bak_0413.py: json_data = unicode_convert(json.load(bbox_info_json_file)) ./process_label.py: data = json.load(f) ./0418_delete_class.py: json_data = unicode_convert(js...
阅读全文
摘要:Refer to https://blog.csdn.net/Q1302182594/article/details/47315177 $ sudo apt-get install extundelete $ sudo extundelete /dev/sda1 --restore-all
阅读全文
摘要:$ timedatectl set-time 2019-03-15 $ timedatectl https://www.tecmint.com/set-time-timezone-and-synchronize-time-using-timedatectl-command/
阅读全文
摘要:for d in ./*; do if [ -d "$d" ]; then for e in $d/*;do if [ -d "$e" ]; then find "$e" -type f -print fi done fi done for d in ./*; do if [ -d "$d" ...
阅读全文
摘要:# cat bbb-subfolder.sh for d in ./*; do if [ -d "$d" ]; then echo "$d" for e in $d/*;do if [ -d "$e" ]; then echo "$e" fi done fi done
阅读全文
摘要:# cat aaa-ls.sh yourfilenames=`ls ./*.jpg` for eachfile in $yourfilenames do echo $eachfile done
阅读全文