dotfiles/snippets/shell_counter.sh
2024-04-16 19:42:48 -06:00

3 lines
53 B
Bash

i=0 # Start in 0
i=$((i+1)) # 0+1 = 1
echo $i