mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 08:25:16 -04:00
Merge commit 2f57ecae4b
This is a new major release with a number of changes and extensions:
- Limited the number of temporary numbers and made the space for them
static so that allocating more space for them cannot fail.
- Allowed integers with non-zero scale to be used with power, places,
and shift operators.
- Added greatest common divisor and least common multiple to lib2.bc.
- Made bc and dc UTF-8 capable.
- Added the ability for users to have bc and dc quit on SIGINT.
- Added the ability for users to disable prompt and TTY mode by
environment variables.
- Added the ability for users to redefine keywords.
- Added dc's modular exponentiation and divmod to bc.
- Added the ability to assign strings to variables and array elements
and pass them to functions in bc.
- Added dc's asciify command and stream printing to bc.
- Added bitwise and, or, xor, left shift, right shift, reverse,
left rotate, right rotate, and mod functions to lib2.bc.
- Added the functions s2u(x) and s2un(x,n), to lib2.bc.
MFC after: 1 week
47 lines
466 B
Bash
Executable file
47 lines
466 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if test $# -lt 2
|
|
then
|
|
echo usage: $0 dc_exec year [options...]
|
|
exit 1
|
|
fi
|
|
|
|
dc_exec="$1"
|
|
shift
|
|
|
|
year="$1"
|
|
shift
|
|
|
|
echo $year '
|
|
[
|
|
ddsf
|
|
[
|
|
lfp
|
|
[too early
|
|
]P
|
|
q
|
|
]s@
|
|
1583>@
|
|
ddd19%1+sg100/1+d3*4/12-sx8*5+25/5-sz5*4/lx-10-sdlg11*20+lz+lx-30%
|
|
d
|
|
[30+]s@
|
|
0>@d
|
|
[
|
|
[1+]s@
|
|
lg11<@
|
|
]s@
|
|
25=@d
|
|
[1+]s@
|
|
24=@se44le-d
|
|
[30+]s@
|
|
21>@dld+7%-7+
|
|
[March ]sm
|
|
d
|
|
[
|
|
31-
|
|
[April ]sm
|
|
]s@
|
|
31<@psnlmPpsn1z>p
|
|
]sp
|
|
lpx' | "$dc_exec" "$@" | tr '\012' ' '
|
|
echo ''
|