(bash) handling arrays of paths
This commit is contained in:
+6
-8
@@ -1,11 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
array=("test0" "test1" "test2")
|
IFS=$'\n'
|
||||||
suffix="henlo"
|
array=($(find . -mindepth 1 -maxdepth 1 -type d))
|
||||||
|
unset IFS
|
||||||
|
|
||||||
echo "${array[@]}"
|
for item in "${array[@]}"; do
|
||||||
echo ""
|
echo "[ ${item} ]"
|
||||||
|
done
|
||||||
array=("${array[@]/%/${suffix}}")
|
|
||||||
|
|
||||||
echo "${array[@]}"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user