Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Επιλογή σταθμού σε περισσότερες θέσεις από 9 #113

Open
wants to merge 4 commits into
base: stable
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions shelldio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
# Please read the file LICENSE and README for more information.
#

## Enable extended globbing features
shopt -s extglob

### Colors
if [ -t 1 ]; then
RED=$(printf '\033[31m')
Expand Down Expand Up @@ -91,7 +94,7 @@ option_detail() {

Αν θέλουμε να ξεκινήσουμε το shelldio με όρισμα τότε αυτό μπορεί να είναι ένα από τα παρακάτω:

<1-9>: Γρήγορη εκκίνηση. Ξεκινάει την αναπαραγωγή του σταθμού απευθείας
<number>: Γρήγορη εκκίνηση. Ξεκινάει την αναπαραγωγή του σταθμού απευθείας
από τη θέση που δόθηκε ως όρισμα χωρίς να εμφανίζει την λίστα αγαπημένων μας.
(π.χ. shelldio 4, ξεκινάει τον σταθμό που βρίσκεται στην θέση 4 από την λίστα των αγαπημένων μας)

Expand Down Expand Up @@ -301,7 +304,7 @@ self_update() {

while [ "$1" != "" ]; do
case $1 in
[1-9])
+([1-9]))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about 10, 20, 30 etc?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Στην δοκιμή μου, έβαλα 15 αγαπημένα. έτρεξα shelldio 14 και έβγαλε Λάθος επιλογή

clear
break # Συνέχεια στο script για αναπαραγωγή
;;
Expand Down