mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-27 03:56:21 +02:00
remove while
This commit is contained in:
@@ -207,35 +207,30 @@ if [ ${walletExists} -eq 0 ]; then
|
||||
echo "choice($CHOICE)"
|
||||
|
||||
if [ "${CHOICE}" == "ONLYSEED" ] || [ "${CHOICE}" == "SEED+SCB" ]; then
|
||||
# enter SEED words
|
||||
wordstring=""
|
||||
while [ ${#wordstring} -eq 0 ]
|
||||
do
|
||||
echo "ENTER SEED"
|
||||
# dialog to enter
|
||||
#$_temp="/home/admin/.seed.tmp"
|
||||
wordstring=$(whiptail --backtitle "RaspiBlitz - LND Recover" --inputbox "Please enter/paste the SEED WORD LIST:\n(just the words, seperated by commas, in correct order as numbered)" 9 78)
|
||||
#wordstring=$( cat $_temp | tr -dc '[:alnum:]-.' | tr -d ' ' )
|
||||
#shred $_temp
|
||||
echo "processing ..."
|
||||
|
||||
# dialog to enter
|
||||
#$_temp="/home/admin/.seed.tmp"
|
||||
wordstring=$(dialog --backtitle "RaspiBlitz - LND Recover" --inputbox "Please enter/paste the SEED WORD LIST:\n(just the words, seperated by commas, in correct order as numbered)" 9 78)
|
||||
#wordstring=$( cat $_temp | tr -dc '[:alnum:]-.' | tr -d ' ' )
|
||||
#shred $_temp
|
||||
echo "processing ..."
|
||||
# remove spaces
|
||||
wordstring=$(echo "${wordstring}" | sed 's/[^a-zA-Z0-9 ]//g')
|
||||
|
||||
# remove spaces
|
||||
wordstring=$(echo "${wordstring}" | sed 's/[^a-zA-Z0-9 ]//g')
|
||||
|
||||
# string to array
|
||||
IFS=',' read -r -a seedArray <<< "$wordstring"
|
||||
# string to array
|
||||
IFS=',' read -r -a seedArray <<< "$wordstring"
|
||||
|
||||
# check array
|
||||
if [ ${#seedArray[@]} -eq 24 ]; then
|
||||
echo "OK - 24 words"
|
||||
exit 1
|
||||
else
|
||||
echo "wrong number of words"
|
||||
wordstring=""
|
||||
exit 1
|
||||
fi
|
||||
sleep 3
|
||||
done
|
||||
# check array
|
||||
if [ ${#seedArray[@]} -eq 24 ]; then
|
||||
echo "OK - 24 words"
|
||||
exit 1
|
||||
else
|
||||
echo "wrong number of words"
|
||||
wordstring=""
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
if [ "${CHOICE}" == "ONLYSEED" ]; then
|
||||
|
Reference in New Issue
Block a user