[test.sh] remove this..

This commit is contained in:
LuKe Tidd 2023-11-19 10:06:20 -05:00
parent e42db4da00
commit 2aeb355ce4
Signed by: luke
GPG Key ID: 75D6600BEF4E8E8F

18
test.sh
View File

@ -1,18 +0,0 @@
#!/bin/bash
unset a
declare -a a
c=0
function t() {
c+=1
a+=(bly $c)
}
for i in {1..10}; do
t
done
for i in "${a[@]}"; do
echo $i
done