我有一个简单的 perl 脚本,如下所示:
#!/usr/bin/perl
use strict;
use warnings;
print "hello world!\n";
我可以按如下方式执行此脚本:
>temp.pl
hello world!
>
如果我添加一些这样的评论:
#this script is just for test
#the shebang
#!/usr/bin/perl
use strict;
use warnings;
print "hello world!\n";
当我尝试执行时,它给我的输出如下:
> temp.pl
use: Command not found.
use: Command not found.
print: Command not found.
>
这里的重点是,无论如何,shebang 线都应该始终位于顶部。谁能解释为什么?