2006-01-23 05:07:56 +08:00
|
|
|
#!@prefix@/bin/fish
|
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
set -l from 1
|
|
|
|
set -l step 1
|
|
|
|
set -l to 1
|
2006-01-23 05:07:56 +08:00
|
|
|
|
2006-01-28 10:18:46 +08:00
|
|
|
if test 1 = "@HAVE_GETTEXT@"; and which gettext >/dev/null ^/dev/null
|
|
|
|
function _ -d "Alias for the gettext command"
|
|
|
|
gettext fish $argv
|
|
|
|
end
|
|
|
|
else
|
|
|
|
function _ -d "Alias for the gettext command"
|
|
|
|
printf "%s" $argv
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
switch (count $argv)
|
|
|
|
case 1
|
|
|
|
set to $argv[1]
|
2006-01-23 05:07:56 +08:00
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
case 2
|
|
|
|
set from $argv[1]
|
|
|
|
set to $argv[2]
|
2006-01-23 05:07:56 +08:00
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
case 3
|
|
|
|
set from $argv[1]
|
|
|
|
set step $argv[2]
|
|
|
|
set to $argv[3]
|
2006-01-23 05:07:56 +08:00
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
case '*'
|
|
|
|
printf (_ "%s: Expected 1, 2 or 3 arguments, got %d\n") seq (count $argv)
|
|
|
|
return 1
|
2006-01-23 05:07:56 +08:00
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
end
|
2006-01-23 05:07:56 +08:00
|
|
|
|
2006-01-23 19:36:48 +08:00
|
|
|
for i in $from $step $to
|
|
|
|
if not echo $i | grep '^-\?[0-9]*\(\|.[0-9]\+\)$' >/dev/null
|
|
|
|
printf (_ "%s: '%s' is not a number\n") seq $i
|
|
|
|
return 1
|
2006-01-23 05:07:56 +08:00
|
|
|
end
|
|
|
|
end
|
2006-01-23 19:36:48 +08:00
|
|
|
|
|
|
|
echo "for( i=$from; i<=$to ; i+=$step ) i;" | bc
|