13 lines
220 B
Bash
Executable File
13 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# /run/user/1000/gvfs/smb-share:server=192.168.0.4,share=data/Product/Legacy Products/ETC3000
|
|
#
|
|
#
|
|
|
|
for i in $(seq 0 100 65536)
|
|
do
|
|
printf "%5d : " "$i"
|
|
wine CODE_6 "$i" 2>/dev/null | grep -v er
|
|
done
|