bashandperl.sh
来自「Shall高级编程」· Shell 代码 · 共 19 行
SH
19 行
#!/bin/bash# bashandperl.shecho "Greetings from the Bash part of the script."# More Bash commands may follow here.exit 0# End of Bash part of the script.# =======================================================#!/usr/bin/perl# This part of the script must be invoked with -x option.print "Greetings from the Perl part of the script.\n";# More Perl commands may follow here.# End of Perl part of the script.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?