本shell基于ftp客户端,在终端运行ftp -h 后,结果如下Usage: { ftp | pftp } [-46pinegvtd] [hostname] -4: use IPv4 addresses only -6: use IPv6, nothing else -p: enable passive mode (default fo
源码:get_local_ips.sh#!/bin/bashget_ip_from_device_index(){ index=$1 sed_cmd="sed -ne '/^$((index)):/,/^$((index+1)):/p'" ip a|eval $sed_cmd|grep inet|awk '{ip=substr($2,1,index($2,
出于练手的目的,写了一个获取开放指定端口号ip的脚本,脚本核心基于强大的nmap工具,然后结果用sed过滤出ip,最终显示到终端,并且保存至文本文件。所以,要运行该脚本,必须先安装nmap软件。 **整个脚本内容如下**: ```language #!/bin/bash get_threads_num(){ ps -ef|grep "nmap -iR"|grep -v "grep
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号