2019-03-09 21:39:51 +00:00
|
|
|
# If seq is not installed, then define a function that invokes __fish_fallback_seq
|
2015-11-27 18:34:27 +00:00
|
|
|
# We can't call type here because that also calls seq
|
2013-01-12 23:22:09 +00:00
|
|
|
|
2017-02-13 16:30:38 +00:00
|
|
|
if not command -sq seq
|
2019-03-09 21:39:51 +00:00
|
|
|
if command -sq gseq
|
|
|
|
# No seq provided by the OS, but GNU coreutils was apparently installed, fantastic
|
|
|
|
function seq --description "Print sequences of numbers (gseq)"
|
|
|
|
gseq $argv
|
|
|
|
end
|
|
|
|
exit
|
|
|
|
else
|
|
|
|
# No seq command
|
|
|
|
function seq --description "Print sequences of numbers"
|
|
|
|
__fish_fallback_seq $argv
|
|
|
|
end
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function __fish_fallback_seq --description "Fallback implementation of the seq command"
|
|
|
|
set -l from 1
|
|
|
|
set -l step 1
|
|
|
|
set -l to 1
|
|
|
|
|
2019-11-16 10:21:45 +00:00
|
|
|
# Remove a "--" argument if it happens first.
|
2020-03-09 18:36:12 +00:00
|
|
|
if test "x$argv[1]" = x--
|
2019-11-16 10:21:45 +00:00
|
|
|
set -e argv[1]
|
|
|
|
end
|
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
switch (count $argv)
|
|
|
|
case 1
|
|
|
|
set to $argv[1]
|
|
|
|
case 2
|
|
|
|
set from $argv[1]
|
|
|
|
set to $argv[2]
|
|
|
|
case 3
|
|
|
|
set from $argv[1]
|
|
|
|
set step $argv[2]
|
|
|
|
set to $argv[3]
|
|
|
|
case '*'
|
2022-04-04 03:57:55 +00:00
|
|
|
printf (_ "%s: Expected 1, 2 or 3 arguments, got %d\n") seq (count $argv) >&2
|
2016-11-28 05:27:22 +00:00
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
for i in $from $step $to
|
2019-03-07 13:06:06 +00:00
|
|
|
if not string match -rq -- '^-?[0-9]*([0-9]*|\.[0-9]+)$' $i
|
2022-04-04 03:57:55 +00:00
|
|
|
printf (_ "%s: '%s' is not a number\n") seq $i >&2
|
2016-11-28 05:27:22 +00:00
|
|
|
return 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-07 13:02:26 +00:00
|
|
|
if test $step -ge 0
|
|
|
|
set -l i $from
|
|
|
|
while test $i -le $to
|
|
|
|
echo $i
|
2019-03-07 13:06:06 +00:00
|
|
|
set i (math -- $i + $step)
|
2019-03-07 13:02:26 +00:00
|
|
|
end
|
2016-11-28 05:27:22 +00:00
|
|
|
else
|
2019-03-07 13:02:26 +00:00
|
|
|
set -l i $from
|
|
|
|
while test $i -ge $to
|
|
|
|
echo $i
|
2019-03-07 13:06:06 +00:00
|
|
|
set i (math -- $i + $step)
|
2019-03-07 13:02:26 +00:00
|
|
|
end
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
|
|
|
end
|
2013-01-12 23:22:09 +00:00
|
|
|
end
|