Last active 1748862019

nithir's Avatar nithir revised this gist 1748862018. Go to revision

No changes

nithir's Avatar nithir revised this gist 1728568353. Go to revision

1 file changed, 1 insertion, 2 deletions

gestion_espace.bash

@@ -1,8 +1,7 @@
1 1 names="a b
2 2 c d
3 3 e f
4 - g h
5 - "
4 + g h"
6 5
7 6 IFS=$'\n\t'
8 7 for name in ${names[@]}; do

nithir's Avatar nithir revised this gist 1728568239. Go to revision

1 file changed, 10 insertions

gestion_espace.bash(file created)

@@ -0,0 +1,10 @@
1 + names="a b
2 + c d
3 + e f
4 + g h
5 + "
6 +
7 + IFS=$'\n\t'
8 + for name in ${names[@]}; do
9 + echo "$name"
10 + done
Newer Older