How to remove the last element from an array in Bash

2 Answers

0 votes
arr=(a b c d e)

unset arr[-1] 

echo ${arr[@]} 



# run:
#
# a b c d
#

 



answered Feb 12, 2021 by avibootz
0 votes
arr=(a b c d e)

unset arr[${#arr[@]}-1]

echo ${arr[@]} 



# run:
#
# a b c d
#

 



answered Feb 12, 2021 by avibootz

Related questions

2 answers 404 views
2 answers 370 views
1 answer 345 views
1 answer 262 views
1 answer 216 views
1 answer 283 views
1 answer 306 views
...