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.
配列を作成してから、この配列から削除できます
$ foo=(a b c) $ unset foo[0] $ echo ${foo[*]} b c
ただし、nullglob設定されている場合、配列から削除できません
nullglob
$ shopt -s nullglob $ foo=(a b c) $ unset foo[0] $ echo ${foo[*]} a b c