diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-01-03 17:14:47 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-01-03 17:14:47 +0100 |
commit | ffe7b25a710fdefe73d1e8035f105294c2ac873e (patch) | |
tree | bbb332626d337540f637fe0068c2661c7ba2ea83 /bin | |
parent | 3ec67bef94c4feacde558faf2cc68abf44890a32 (diff) |
re-add some flags and fix exclusion
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/slw | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -20,6 +20,20 @@ while [ true ]; do fi if [ $(( $(rand) % 2 )) -gt 0 ]; then + FLAGS="${FLAGS}-d " + fi + + if [ $(( $(rand) % 2 )) -gt 0 ]; then + FLAGS="${FLAGS}-F " + fi + + if [ $(( $(rand) % 2 )) -gt 0 ]; then + FLAGS="${FLAGS}-G " + FLAGS=$(echo ${FLAGS} | sed 's/-c //g') + FLAGS=$(echo ${FLAGS} | sed 's/-l //g') + fi + + if [ $(( $(rand) % 2 )) -gt 0 ]; then FLAGS="${FLAGS}-l " fi |