代码片段

作者: 敖武

数字序列

#!/bin/bash
for n in {1..5}
do
  echo $n
done