dc Stop Line Breaks
This page answers questions like these:
- Why is dc splitting numbers over multiple lines?
- How to stop dc breaking output over multiple lines?
Related Links:
dc Non-zero Scale In Exponent
dc Remainder By Zero
bc Non-zero Scale In Exponent
dc Stop Output Being Split Over Multiple Lines:
$ dc
100 50 ^ p
100000000000000000000000000000000000000000000000000000000000000000000\
00000000000000000000000000000000
- By default, dc splits large outputs over multiple lines using backslashes.
- To stop this, set the DC_LINE_LENGTH environment variable to zero or some large number.
$ DC_LINE_LENGTH=0 dc
100 50 ^ p
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Related Links:
dc Non-zero Scale In Exponent
dc Remainder By Zero
bc Non-zero Scale In Exponent
Home > Linux / Unix > dc Stop Line Breaks
Tags: dc stop lines breaks, stop line breaks, dc, linux, unix, solaris, bsd, aix
Copyright © HelpDoco.com
dc-stop-line-breaks.txt
Linux-Unix/dc-stop-line-breaks.htm
1