perlsh.cmd
来自「早期freebsd实现」· CMD 代码 · 共 20 行
CMD
20 行
extproc perl -x#!perl# Poor man's perl shell.# Simply type two carriage returns every time you want to evaluate.# Note that it must be a complete perl statement--don't type double# carriage return in the middle of a loop.print "Perl shell\n> ";$/ = ''; # set paragraph mode$SHlinesep = "\n";while ($SHcmd = <>) { $/ = $SHlinesep; eval $SHcmd; print $@ || "\n> "; $SHlinesep = $/; $/ = '';}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?