nsbin/smbscan
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

9 lines
117 B
Bash
Executable file

#!/bin/sh
i=0;
while [ $i -lt 255 ]; do
smbclient -U Administrator -N -W workgroup -L $1.$i
i=$[$i+1]
done