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