dotar/vim/snippets/sh/for/times-sequence.snippet

5 lines
52 B
Plaintext
Raw Normal View History

2011-11-18 05:45:33 +08:00
for ${1:i} in {${2:1}..${3:10}}
do
echo "$$1"
done