2006-02-16 22:16:17 +10:00
#!/usr/bin/env fish
2010-09-18 10:18:26 +08:00
#
2006-02-04 23:09:14 +10:00
# Fallback implementation of the seq command
#
# @configure_input@
2006-01-23 07:07:56 +10:00
2006-01-23 21:36:48 +10:00
set -l from 1
set -l step 1
set -l to 1
2006-01-23 07:07:56 +10:00
2006-02-04 23:09:14 +10:00
function _ -d "Alias for the gettext command"
printf "%s" $argv
end
if test 1 = "@HAVE_GETTEXT@"
if which gettext ^/dev/null >/dev/null
function _ -d "Alias for the gettext command"
gettext fish $argv
end
2006-01-28 12:18:46 +10:00
end
end
2006-01-23 21:36:48 +10:00
switch (count $argv)
case 1
set to $argv[1]
2006-01-23 07:07:56 +10:00
2006-01-23 21:36:48 +10:00
case 2
set from $argv[1]
set to $argv[2]
2006-01-23 07:07:56 +10:00
2006-01-23 21:36:48 +10:00
case 3
set from $argv[1]
set step $argv[2]
set to $argv[3]
2006-01-23 07:07:56 +10:00
2006-01-23 21:36:48 +10:00
case '*'
printf (_ "%s: Expected 1, 2 or 3 arguments, got %d\n") seq (count $argv)
2006-06-01 01:44:28 +10:00
exit 1
2006-01-23 07:07:56 +10:00
2006-01-23 21:36:48 +10:00
end
2006-01-23 07:07:56 +10:00
2006-01-23 21:36:48 +10:00
for i in $from $step $to
2006-08-10 08:52:30 +10:00
if not echo $i | grep -E '^-?[0-9]*([0-9]*|\.[0-9]+)$' >/dev/null
2006-01-23 21:36:48 +10:00
printf (_ "%s: '%s' is not a number\n") seq $i
2006-06-01 01:44:28 +10:00
exit 1
2006-01-23 07:07:56 +10:00
end
end
2006-01-23 21:36:48 +10:00
2010-11-05 09:34:42 -06:00
if [ $step -ge 0 ]
2010-11-12 02:07:14 +11:00
echo "for( i=$from; i<=$to ; i+=$step ) i;" | bc
2010-11-05 09:34:42 -06:00
else
2010-11-12 02:07:14 +11:00
echo "for( i=$from; i>=$to ; i+=$step ) i;" | bc
2010-11-05 09:34:42 -06:00
end