make_links.pl
来自「source of perl for linux application,」· PL 代码 · 共 9 行
PL
9 行
#!/usr/local/bin/perl# this is just a utility for creating symlinks from *.txt to *.cgi# for documentation purposes.foreach (<*.cgi>) { ($target=$_)=~s/cgi$/txt/; symlink $_,$target}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?