aboutsummaryrefslogtreecommitdiff
path: root/pkg/utilities/doc/entab.hlp
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/utilities/doc/entab.hlp
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'pkg/utilities/doc/entab.hlp')
-rw-r--r--pkg/utilities/doc/entab.hlp30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkg/utilities/doc/entab.hlp b/pkg/utilities/doc/entab.hlp
new file mode 100644
index 00000000..224f9a82
--- /dev/null
+++ b/pkg/utilities/doc/entab.hlp
@@ -0,0 +1,30 @@
+.help entab Mar84 utilities
+.ih
+NAME
+entab -- replaces blanks by tabs and blanks
+.ih
+USAGE
+entab files
+.ih
+PARAMETERS
+.ls files
+Template specifying the files to be processed, e.g. "file" or "file*".
+.le
+.ls tablist = "9 +8"
+String containing a list of tabstops separated by blanks or commas.
+A two element string of the form "m +n" will set
+tabstops in every n columns beginning in column m.
+A null string defaults to "9 +8".
+.le
+.ih
+EXAMPLE
+Convert the file "prog.c", written using full tabstop indents, to
+an equivalent file with an initial indent of one full tabstop,
+with 4 space indents thereafter.
+
+.nf
+ cl> detab prog.c tab='9 +4' | entab > temp
+ cl> delete prog.c
+ cl> rename temp prog.c
+.fi
+.endhelp