# Options (TCL)

The print (p and no pause (n options are the only standard options available to every TCL command.

Note: Options are special characters that alter the normal
effect of a TCL command.

Options always display at the end
of a TCL command and must be preceded by a left parenthesis. Commas
(,) are optional between the parameters. This rule does not, however,
apply to spooler, dump, and where commands.

## Syntax

```
tcl.commands...(n
tcl.commands...(p
```

## Parameter(s)

| options | n | Activates the nopause function on output to the terminal. |
| --- | --- | --- |
| p | Directs output to the system printer via the spooler. | |

## Example(s)

```
copy dm,bp, term-type (p
block-print this is a test (n
```

## See also

- [block-print command](https://d3codex.com/tcl/block-print-command/)
- [ld command](https://d3codex.com/tcl/ld-command/)
- [ldf macro](https://d3codex.com/tcl/ldf-macro/)
- [list-commands macro](https://d3codex.com/tcl/list-commands-macro/)
- [list-files command](https://d3codex.com/tcl/list-files-command/)
- [list-jobs macro](https://d3codex.com/tcl/list-jobs-macro/)
- [list-lists macro](https://d3codex.com/tcl/list-lists-macro/)
- [list-macros macro](https://d3codex.com/tcl/list-macros-macro/)
- [list-menu command](https://d3codex.com/tcl/list-menu-command/)
- [list-users command](https://d3codex.com/tcl/list-users-command/)
- [listabs command](https://d3codex.com/tcl/listabs-command/)
- [monitor-status command](https://d3codex.com/tcl/monitor-status-command/)
- [Options (Access Query Language)](https://d3codex.com/access/options-access-query-language/)
- [sort-users command](https://d3codex.com/tcl/sort-users-command/)

---
Source: https://d3codex.com/tcl/options-tcl/ - part of the D3Codex reference.
