Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはコード スニペットです。ここで、不適切に配置された () のエラーが表示されます
#!/bin/sh #!/usr/bin/perl -w # array declaration arr= (one two three) # seeing error here # for loop for (( i=0;i<4;i++ )) do echo "\n $i : ${a[i]}" done