skrip bash menghapus elemen pertama array dan indeks shift

array=("${array[@]:1}") 
#or for $@
set -- "${@:1}"
Brian Patterson