# NAME up - optex module for multi-column paged output # SYNOPSIS optex -Mup command ... optex -Mup -C2 -- command ... optex -Mup -G2x2 -- command ... # DESCRIPTION **up** is a module for the **optex** command that pipes the output through [App::ansicolumn](https://metacpan.org/pod/App%3A%3Aansicolumn) for multi-column formatting and a pager. The name comes from the printing term "n-up" (2-up, 3-up, etc.) which refers to printing multiple pages on a single sheet. The module automatically calculates the number of columns based on the terminal width divided by the pane width (default 85 characters). Both stdout and stderr are merged and passed through the filter, so error messages are also displayed in the multi-column paged output. The pager command is taken from the `$PAGER` environment variable if set, otherwise defaults to `less`. When using `less`, `-F +Gg` options are automatically appended. `-F` causes `less` to exit immediately if the output fits on one screen. `+Gg` causes `less` to read all input before displaying, which may take time for large output, but prevents empty trailing pages from being shown. # OPTIONS Module options must be specified before `--` separator. - **--pane**=_N_, **-C** _N_ Set the number of columns (panes) directly. - **--row**=_N_, **-R** _N_ Set the number of rows. The page height is calculated by dividing the terminal height by this value. - **--grid**=_CxR_, **-G** _CxR_ Set the grid layout. For example, `--grid=2x3` or `--grid=2,3` creates a 2-column, 3-row layout (6-up). This is equivalent to `-C2 -R3`. - **--height**=_N_ Set the page height directly in lines. - **--pane-width**=_N_, **-S** _N_ Set the pane width in characters. Default is 85. When **--pane** is not specified, the number of panes is calculated by dividing the terminal width by this value. - **--border-style**=_STYLE_, **--bs**=_STYLE_ Set the border style for ansicolumn. Default is `heavy-box`. See [App::ansicolumn](https://metacpan.org/pod/App%3A%3Aansicolumn) for available styles. - **--line-style**=_STYLE_, **--ls**=_STYLE_ Set the line style for ansicolumn. Available styles are `none`, `truncate`, `wrap`, and `wordwrap`. Default is `wrap` (inherited from ansicolumn's document mode). - **--fold**, **-F** Enable fold mode (disable page mode). In fold mode, the entire content is split evenly across columns without pagination. Page mode is the default. - **--pager**=_COMMAND_ Set the pager command. Default is `$PAGER` or `less`. - **--no-pager** Disable pager. Output goes directly to stdout. # EXAMPLES Display perldoc output in multiple columns: optex -Mup perldoc App::optex::up