localhost filtering

This commit is contained in:
fred 2023-02-23 02:35:46 +01:00
parent 7d0818f5da
commit 55fbfdf46e
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ echo 'PRESS ENTER... '; read
## CREATE AND OR CONNECT USER
PS3='Astronaute connectez votre PLAYER ___ '
players=("NOUVEAU VISA" "IMPORT PLAYER" $(ls ~/.zen/game/players 2>/dev/null))
players=("NOUVEAU VISA" "IMPORT PLAYER" $(ls ~/.zen/game/players | grep -Ev "localhost" 2>/dev/null))
## MULTIPLAYER
select fav in "${players[@]}"; do