commit by magit in emacs@2019-08-13 15:48:23

This commit is contained in:
Aborn Jiang 2019-08-13 15:48:23 +08:00
parent a16706a6b0
commit a55f137452
1 changed files with 3 additions and 0 deletions

View File

@ -84,3 +84,6 @@ screen mix eeb.deploy # C-a d
# screen -ls
# screen -r id
# screen -X -S id quit #(Attached)
# 通过ls找到需要的文件名再将其移动到outdir路径下
ls |grep "keyword"| while read f; do mv "$f" outdir; done