?? added.cmd
字號(hào):
/* OS/2 REXX script to create nonexisting directories * run with 'added dirlist_file' * where dirlist_file is a XFree86 added-* file * * $XFree86: xc/config/util/added.cmd,v 3.0 1994/10/20 06:01:00 dawes Exp $ */file = arg(1)linein(file,1,0)curdir = directory()do while lines(file)=1 fs = strip(filespec("path",linein(file)),'t','/') newdir = directory(fs) if newdir='' then do say 'create directory='fs call directory(curdir) call 'xc\config\util\mkdirhier.cmd' fs end else do say 'found directory='newdir call directory(curdir) endend
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -