now
Code: Select all
/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)'
Code: Select all
/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)'
dolphin_oracle wrote: Mon Mar 14, 2022 12:06 pm ok thanks. obviously something screwy with that test then.
nowCode: Select all
/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)'
Code: Select all
stefan@HP-Linux:~
$ /bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)'
stefan
stefan@HP-Linux:~
$
Code: Select all
/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -Eq [a-zA-Z0-9]
echo $?
dolphin_oracle wrote: Mon Mar 14, 2022 12:08 pm ok one more. and thanks!
Code: Select all
/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -Eq [a-zA-Z0-9] echo $?
Code: Select all
stefan@HP-Linux:~
$ /bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -Eq [a-zA-Z0-9]
stefan@HP-Linux:~
$ echo $?
1
stefan@HP-Linux:~
Code: Select all
/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q "[a-zA-Z0-9]"
echo $?
I guess so. It says "~: bash - Konsole" in the window title.
Code: Select all
stefan@HP-Linux:~
$ /bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q "[a-zA-Z0-9]"
stefan@HP-Linux:~
$ echo $?
0
stefan@HP-Linux:~
Great, thank you all for your help and support. I'll be happy to help testing, just let me know what to do when you are ready.dolphin_oracle wrote: Mon Mar 14, 2022 12:21 pm we are going to adjust the installer. I imagine we will have one you can install and test. no need for a new snapshot, you can install the new installer while running live.
You're welcome. One last thing: can we confirm that this works:SIttner76 wrote: Mon Mar 14, 2022 12:24 pmGreat, thank you all for your help and support. I'll be happy to help testing, just let me know what to do when you are ready.dolphin_oracle wrote: Mon Mar 14, 2022 12:21 pm we are going to adjust the installer. I imagine we will have one you can install and test. no need for a new snapshot, you can install the new installer while running live.
Code: Select all
/usr/bin/ls -1 /home | grep -Ev '^(lost\\+found|demo|snapshot)$' | grep -q '[a-zA-Z0-9]'
echo $?