📄 ip-packet.pl
字号:
#!/usr/bin/perl# IP-Packet A TCP Packet Generator written in Perl## The Wrapper around shell and GUI mode###################################################################### Last Update 26.11.2002## Programmed by Bastian Ballmann [ bytebeater@crazydj.de ]# http://www.crazydj.de ## Perl is phun!!! =)## This code is licensed under the GPL###[ Read in parameter and load modules ]###require "ip-packet-main.pl";if($ARGV[0] eq "--gui"){ require "ip-packet-gui.pl";}elsif(($ARGV[0] eq "-?") || ($ARGV[0] eq "--help")){ print "Usage $0: [--shell] [--conf]\n\n"; print "Use --shell to load the shell version and --conf to load a config file.\n\n";}else{ $load = "n"; if($ARGV[1] eq "--conf") { $load = "y"; $configfile = $ARGV[2]; } require "ip-packet-shell.pl";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -