Remove pointless pipe
This commit is contained in:
parent
0ff90256e4
commit
e1618e0acc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue