Skip to content

Instantly share code, notes, and snippets.

@magussiro
Forked from jaceju/shell_array.sh
Created July 17, 2020 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magussiro/32363537c42fd0121d21c4028bd1e627 to your computer and use it in GitHub Desktop.
Save magussiro/32363537c42fd0121d21c4028bd1e627 to your computer and use it in GitHub Desktop.
Shell Script 的陣列範例
#!/bin/bash
versions=("5.6.24" "7.0.9")
function say()
{
value=$1
echo -e "php-$value\n"
}
for name in ${versions[@]}; do
say $name
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment