aboutsummaryrefslogtreecommitdiffhomepage
path: root/seq.in
diff options
context:
space:
mode:
authorGravatar Christopher Nilsson <christopher@otherchirps.net>2010-11-12 02:07:14 +1100
committerGravatar Christopher Nilsson <christopher@otherchirps.net>2010-11-12 02:07:14 +1100
commit1b0ce336693243054580e07b4514c598257d4422 (patch)
tree71af04f124f2853c0018e3c7d85e942591658910 /seq.in
parent0cf2a1eb3382a6384b61a6edd577d387b9b62766 (diff)
parentb9b6e867df9718ec17d36f8cd6771cd9a337c46b (diff)
Merged changes from codemonkey and grissiom branches
Conflicts: kill.c seq.in
Diffstat (limited to 'seq.in')
-rwxr-xr-xseq.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/seq.in b/seq.in
index b9e82c09..de8cd11c 100755
--- a/seq.in
+++ b/seq.in
@@ -1,5 +1,5 @@
#!/usr/bin/env fish
-#
+#
# Fallback implementation of the seq command
#
# @configure_input@
@@ -46,7 +46,7 @@ for i in $from $step $to
end
if [ $step -ge 0 ]
- echo "for( i=$from; i<=$to ; i+=$step ) i;" | bc
+ echo "for( i=$from; i<=$to ; i+=$step ) i;" | bc
else
- echo "for( i=$from; i>=$to ; i+=$step ) i;" | bc
+ echo "for( i=$from; i>=$to ; i+=$step ) i;" | bc
end