removed calls to basename

This commit is contained in:
2021-07-30 18:38:28 +02:00
parent 2646b3fa75
commit 9c60bd6d12
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
#
# ex2-sort.bash: Advent2020 game, day 1/game 2, with sort.
CMD=$(basename "$0")
CMD=${0##*/}
readarray -t numbers <<< "$(sort -n)"