web-dev-qa-db-ja.com

Unix Bourne Shellの配列

Bourne Shell(/bin/sh)で配列を使用しようとしています。配列要素を初期化する方法は次のとおりです。

arr=(1 2 3)

しかし、エラーが発生しています:

syntax error at line 8: `arr=' unexpected

今、この構文を見つけた投稿は、それがbash用であると述べていますが、Bourne Shell用の個別の構文を見つけることができませんでした。構文は/bin/shでも同じですか?

32
SubhasisM

/bin/shは、最近のどのシステムでもBourne Shellになることはほとんどありません(Solaris 11の/ bin/shを含める最後の主要なシステムの1つであったSolarisでさえ、POSIX shに切り替えられました)。 /bin/shは70年代初頭のThompson Shellでした。ボーンシェルは、1979年にUnix V7でそれを置き換えました。

/bin/shはその後何年もの間Bourne Shell(またはBSDでの無料の再実装であるAlmquist Shell)でした。

最近では、/bin/shは、ksh88の言語のサブセットに基づくPOSIX sh言語(およびいくつかの非互換性のあるBourne Shell言語のスーパーセット)のインタープリターまたはより一般的なものです。

Bourne ShellまたはPOSIX sh言語仕様は配列をサポートしていません。むしろ、それらは1つの配列のみを持ちます:位置パラメーター($1$2$@、したがって、関数ごとに1つの配列)。

ksh88にはset -Aを使用して設定した配列がありましたが、構文が扱いにくく、使いにくいため、POSIX shで指定されていませんでした。

Array/lists変数を含む他のシェルには、csh/tcshrcesbash(ksh構文をほとんどコピーした)がありますksh93の方法)、yashzshfishそれぞれ異なる構文(rcかつてのUnixの後継のシェル、fishzshは最も一貫性のあるものです)...

標準のshでは(最近のバージョンのBourne Shellでも機能します):

set '1st element' 2 3 # setting the array

set -- "$@" more # adding elements to the end of the array

shift 2 # removing elements (here 2) from the beginning of the array

printf '<%s>\n' "$@" # passing all the elements of the $@ array 
                     # as arguments to a command

for i do # looping over the  elements of the $@ array ($1, $2...)
  printf 'Looping over "%s"\n' "$i"
done

printf '%s\n' "$1" # accessing individual element of the array.
                   # up to the 9th only with the Bourne Shell though
                   # (only the Bourne Shell), and note that you need
                   # the braces (as in "${10}") past the 9th in other
                   # shells (except zsh, when not in sh emulation and
                   # most ash-based shells).

printf '%s\n' "$# elements in the array"

printf '%s\n' "$*" # join the elements of the array with the 
                   # first character (byte in some implementations)
                   # of $IFS (not in the Bourne Shell where it's on
                   # space instead regardless of the value of $IFS)

(Bourne Shellとksh88では、$IFS"$@"が正しく機能するためにスペース文字が含まれている必要があることに注意してください(バグ)。BourneShellでは、$9の上の要素にアクセスできません(${10}は機能しませんが、 shift 1; echo "$9"を実行するか、それらをループします)。

53

プレーンなBourne Shellには配列はありません。次の方法を使用して、配列を作成してトラバースすることができます。

#!/bin/sh
# ARRAY.sh: example usage of arrays in Bourne Shell

array_traverse()
{
    for i in $(seq 1 $2)
    do
    current_value=$1$i
    echo $(eval echo \$$current_value)
    done
    return 1
}

ARRAY_1=one
ARRAY_2=two
ARRAY_3=333
array_traverse ARRAY_ 3

shで配列をどのように使用しても、それを選択するのは常に面倒です。非常に限られたプラットフォームに行き詰まっている、または何かを学びたいのでない限り、PythonPerlなどの別の言語の使用を検討してください。

3

他の人が言ったように、ボーンシェルにはtrue配列がありません。

ただし、必要な操作によっては、区切り文字列で十分です。

sentence="I don't need arrays because I can use delimited strings"
for Word in $sentence
do
  printf '%s\n' "$Word"
done

典型的な区切り文字(スペース、タブ、および改行)では不十分な場合は、ループの前に、区切り文字として IFS を設定できます。

プログラムで配列を作成する必要がある場合は、区切り文字列を作成するだけです。

3
Sildoreth

ダッシュで配列をシミュレートする方法(配列の任意の数の次元に適応できます):(seqコマンドを使用するには、IFSを ''に設定する必要があることに注意してください(SPACE =デフォルト値)while ... do ...またはdo ... while ...これを回避するために代わりにループします(私はseqをコードが何をするかのより良い説明の範囲内に保ちました)。

#!/bin/sh

## The following functions implement vectors (arrays) operations in dash:
## Definition of a vector <v>:
##      v_0 - variable that stores the number of elements of the vector
##      v_1..v_n, where n=v_0 - variables that store the values of the vector elements

VectorAddElementNext () {
# Vector Add Element Next
# Adds the string contained in variable $2 in the next element position (vector length + 1) in vector $1

    local elem_value
    local vector_length
    local elem_name

    eval elem_value=\"\$$2\"
    eval vector_length=\$$1\_0
    if [ -z "$vector_length" ]; then
        vector_length=$((0))
    fi

    vector_length=$(( vector_length + 1 ))
    elem_name=$1_$vector_length

    eval $elem_name=\"\$elem_value\"
    eval $1_0=$vector_length
}

VectorAddElementDVNext () {
# Vector Add Element Direct Value Next
# Adds the string $2 in the next element position (vector length + 1) in vector $1

    local elem_value
    local vector_length
    local elem_name

    eval elem_value="$2"
    eval vector_length=\$$1\_0
    if [ -z "$vector_length" ]; then
        vector_length=$((0))
    fi

    vector_length=$(( vector_length + 1 ))
    elem_name=$1_$vector_length

    eval $elem_name=\"\$elem_value\"
    eval $1_0=$vector_length
}

VectorAddElement () {
# Vector Add Element
# Adds the string contained in the variable $3 in the position contained in $2 (variable or direct value) in the vector $1

    local elem_value
    local elem_position
    local vector_length
    local elem_name

    eval elem_value=\"\$$3\"
    elem_position=$(($2))
    eval vector_length=\$$1\_0
    if [ -z "$vector_length" ]; then
        vector_length=$((0))
    fi

    if [ $elem_position -ge $vector_length ]; then
        vector_length=$elem_position
    fi

    elem_name=$1_$elem_position

    eval $elem_name=\"\$elem_value\"
    if [ ! $elem_position -eq 0 ]; then
        eval $1_0=$vector_length
    fi
}

VectorAddElementDV () {
# Vector Add Element
# Adds the string $3 in the position $2 (variable or direct value) in the vector $1

    local elem_value
    local elem_position
    local vector_length
    local elem_name

    eval elem_value="$3"
    elem_position=$(($2))
    eval vector_length=\$$1\_0
    if [ -z "$vector_length" ]; then
        vector_length=$((0))
    fi

    if [ $elem_position -ge $vector_length ]; then
        vector_length=$elem_position
    fi

    elem_name=$1_$elem_position

    eval $elem_name=\"\$elem_value\"
    if [ ! $elem_position -eq 0 ]; then
        eval $1_0=$vector_length
    fi
}

VectorPrint () {
# Vector Print
# Prints all the elements names and values of the vector $1 on sepparate lines

    local vector_length

    vector_length=$(($1_0))
    if [ "$vector_length" = "0" ]; then
        echo "Vector \"$1\" is empty!"
    else
        echo "Vector \"$1\":"
        for i in $(seq 1 $vector_length); do
            eval echo \"[$i]: \\\"\$$1\_$i\\\"\"
            ###OR: eval printf \'\%s\\\n\' \"[\$i]: \\\"\$$1\_$i\\\"\"
        done
    fi
}

VectorDestroy () {
# Vector Destroy
# Empties all the elements values of the vector $1

    local vector_length

    vector_length=$(($1_0))
    if [ ! "$vector_length" = "0" ]; then
        for i in $(seq 1 $vector_length); do
            unset $1_$i
        done
        unset $1_0
    fi
}

##################
### MAIN START ###
##################

## Setting vector 'params' with all the parameters received by the script:
for i in $(seq 1 $#); do
    eval param="\${$i}"
    VectorAddElementNext params param
done

# Printing the vector 'params':
VectorPrint params

read temp

## Setting vector 'params2' with the elements of the vector 'params' in reversed order:
if [ -n "$params_0" ]; then
    for i in $(seq 1 $params_0); do
        count=$((params_0-i+1))
        VectorAddElement params2 count params_$i
    done
fi

# Printing the vector 'params2':
VectorPrint params2

read temp

## Getting the values of 'params2'`s elements and printing them:
if [ -n "$params2_0" ]; then
    echo "Printing the elements of the vector 'params2':"
    for i in $(seq 1 $params2_0); do
        eval current_elem_value=\"\$params2\_$i\"
        echo "params2_$i=\"$current_elem_value\""
    done
else
    echo "Vector 'params2' is empty!"
fi

read temp

## Creating a two dimensional array ('a'):
for i in $(seq 1 10); do
    VectorAddElement a 0 i
    for j in $(seq 1 8); do
        value=$(( 8 * ( i - 1 ) + j ))
        VectorAddElementDV a_$i $j $value
    done
done

## Manually printing the two dimensional array ('a'):
echo "Printing the two-dimensional array 'a':"
if [ -n "$a_0" ]; then
    for i in $(seq 1 $a_0); do
        eval current_vector_lenght=\$a\_$i\_0
        if [ -n "$current_vector_lenght" ]; then
            for j in $(seq 1 $current_vector_lenght); do
                eval value=\"\$a\_$i\_$j\"
                printf "$value "
            done
        fi
        printf "\n"
    done
fi

################
### MAIN END ###
################
0
user146726