So I\'m trying to do something, not sure if it\'s possible. I have the following code:
for i in {0..5}; do if [[ -f ./user$i ]]; then group$i=$(g
Use declare group$i=... instead of just group$i=...
declare group$i=...
group$i=...