Shall高级编程

源代码在线查看: array-ops.sh

软件大小: 1353 K
上传用户: stuoju
关键词: Shall 高级编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/bash				# array-ops.sh: More fun with arrays.												array=( zero one two three four five )				# Element 0   1   2    3     4    5								echo ${array[0]}       #  zero				echo ${array:0}        #  zero				                       #  Parameter expansion of first element,				                       #+ starting at position # 0 (1st character).				echo ${array:1}        #  ero				                       #  Parameter expansion of first element,				                       #+ starting at position # 1 (2nd character).								echo "--------------"								echo ${#array[0]}      #  4				                       #  Length of first element of array.				echo ${#array}         #  4				                       #  Length of first element of array.				                       #  (Alternate notation)								echo ${#array[1]}      #  3				                       #  Length of second element of array.				                       #  Arrays in Bash have zero-based indexing.								echo ${#array[*]}      #  6				                       #  Number of elements in array.				echo ${#array[@]}      #  6				                       #  Number of elements in array.								echo "--------------"								array2=( [0]="first element" [1]="second element" [3]="fourth element" )								echo ${array2[0]}      # first element				echo ${array2[1]}      # second element				echo ${array2[2]}      #				                       # Skipped in initialization, and therefore null.				echo ${array2[3]}      # fourth element												exit 0							

相关资源