Remove pointless pipe

This commit is contained in:
raul 2025-01-20 08:23:59 +01:00
parent 0ff90256e4
commit e1618e0acc
Signed by: raul
GPG Key ID: C1AA797073F17129
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ checkLose() {
main() {
# Genera un número aleatorio desde 0 hasta el número máximo
# configurado por el usuario
RANDOM_NUM=$(seq 0 $POOL_NUM | tr " " "\n" | shuf -n1)
RANDOM_NUM=$(seq 0 $POOL_NUM | shuf -n1)
for (( ; ; )); do
status