diff options
author | B. Watson <urchlay@slackware.uk> | 2023-05-08 18:24:58 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-13 19:27:03 +0700 |
commit | 67a6accbaa9354bb422aef290f063d0aa83d913a (patch) | |
tree | 45556e06d3a29c6fbc125e1e17de2679ae0c10e6 /development/bascat/bascat.rst | |
parent | 5793f20488503443961e5e95b916d4cffc8b3ba2 (diff) |
development/bascat: Added (detokenizer for BBC BASIC programs)
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/bascat/bascat.rst')
-rw-r--r-- | development/bascat/bascat.rst | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/development/bascat/bascat.rst b/development/bascat/bascat.rst new file mode 100644 index 0000000000000..f0f089319e670 --- /dev/null +++ b/development/bascat/bascat.rst @@ -0,0 +1,98 @@ +.. RST source for bascat(1) man page. Convert with: +.. rst2man.py bascat.rst > bascat.1 +.. rst2man.py comes from the SBo development/docutils package. + +.. |version| replace:: 1.2pre2 +.. |date| date:: + +====== +bascat +====== + +---------------------------------------- +detokenizer for BBC Micro BASIC programs +---------------------------------------- + +:Manual section: 1 +:Manual group: SlackBuilds.org +:Date: |date| +:Version: |version| + +SYNOPSIS +======== + +**bascat** [*--help* | *-h*] [*--version* | *-v*] [*--line-numbers* | *-n*] [*--no-line-numbers* | *+n*] [*--highlight* | *-l* ] [*--no-highlight* | *+l* ] [*--pager=PAGER* | *-p PAGER*] [*file* ...] + +DESCRIPTION +=========== + +Types tokenized (SAVEd) BBC BASIC programs in a readable way. + +With no *file* arguments, **bascat** reads from standard input. + +If standard output is a terminal, output will be piped through a +pager. The default is **$PAGER** from the environment, or **less** if +not set. Note that if standard output is not a terminal (e.g. if redirecting to +a file), no pager is used. + +Options can be placed in the **BASCAT** environment variable, if you don't +like the standard settings. + +OPTIONS +======= + +Prefix long options with **no-** to cancel them. Use **+** to cancel short options. + +--help, -h + Display built-in help message and exit. + +--version, -h + Display version number and exit. + +--line-numbers, -n + Display line numbers for each line. This is enabled by default; use **+n** or + **--no-line-numbers** to disable. + +--highlight, -l + Attempts to highlight keywords. Whether this works properly or not depends on + the pager in use; **more**\(1), **less**\(1), and **most**\(1) work correctly. + **lv**\(1) will work if you have **-c** in **~/.lv** or **LV** in the environment. + +--pager=pager, -p pager + Sets pager to use, if standard output is a terminal. Overrides **PAGER** environment variable. + If you don't want a pager, use **-p cat**. + +.. FILES +.. ===== + +.. ENVIRONMENT +.. =========== + +.. EXIT STATUS +.. =========== + +.. BUGS +.. ==== + +.. EXAMPLES +.. ======== + +COPYRIGHT +========= + +See the file /usr/doc/bascat-|version|/README for license information. + +AUTHORS +======= + +**bascat** was written by Matthew Wilcox and Mark Wooding. + +This man page written for the SlackBuilds.org project +by B. Watson, and is licensed under the WTFPL. + +SEE ALSO +======== + +**dfsimage**\(1) + +The bascat homepage: https://git.distorted.org.uk/~mdw/ |