Linux操作系统下给Windows发送PopUp消息方法:
把下面脚本保存为/usr/local/bin/net:
#!/bin/bash
#/usr/local/bin/net
case “$1” in
send)
echo “$3”|smbclient -I “$2” -M `nmblookup -A “$2”|sed -e ‘1d’
-e ‘3,/*/d’|cut -f2|cut -d‘ ’ -f1`
;;
*)
echo “Usage:net send <IPaddr.> <message>”
exit 1
esac
再给该文件加上执行权限,命令如下:
#chmod +x /usr/local/bin/net
使用net脚本的例子如下:
#net send 192.168.12.1 "hello, Linux!"
<!--[if !supportLineBreakNewLine]-->
<!--[endif]-->