You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
# simply print passed array |
|
# |
|
# example |
|
# |
|
# myarray=() |
|
# print_array myarray |
|
# |
|
print_array() { |
|
local -n arr # -n available over bash 4.3 |
|
arr=$1 |
|
|
|
echo "" |
|
echo "begin >>>" |
|
printf "%s\n" "${arr[@]}" |
|
echo "<<< end" |
|
echo "" |
|
}
|
|
|