- Allowed memory size of 33554432 bytes exhausted
- /etc/php5/php.iniを書き換える.
[Vine]
memory_lilmit = 128MB
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
#!/bin/sh
list=(a b c)
for i in ${list[@]}; do
echo $i
done
$ ./test.sh
./test.sh: 3: Syntax error: "(" unexpected
$ cat test.sh
#/bin/sh
list=(a b c)
for i in ${list[@]}; do
echo $i
done
$ ./test.sh
a
b
c