From d5ca0b2a18868a8ca39b87bcb3c910c2961b6349 Mon Sep 17 00:00:00 2001 From: "Robin P. Clark" Date: Mon, 13 Jul 2026 14:39:33 +0100 Subject: [PATCH] This runs the ETC3000 passcode generator for the commissioning code password. --- run_code_6.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 run_code_6.sh diff --git a/run_code_6.sh b/run_code_6.sh new file mode 100755 index 0000000..f64ce44 --- /dev/null +++ b/run_code_6.sh @@ -0,0 +1,12 @@ +#!/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