File: echo.gp

package info (click to toggle)
genparse 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 3,272 kB
  • ctags: 2,718
  • sloc: ansic: 8,794; cpp: 6,060; sh: 5,175; java: 578; yacc: 482; makefile: 344; lex: 315
file content (32 lines) | stat: -rw-r--r-- 990 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "coreutils.h"

n		flag	"do not output the trailing newline"
e		flag	"enable interpretation of backslash escapes (default)"
E		flag	"disable interpretation of backslash escapes"
h / help	flag	"display this help and exit"
v / version	flag	"output version information and exit"

#usage_begin
Usage: __PROGRAM_NAME__ [OPTION]... [STRING]...
Echo the STRING(s) to standard output.

__GLOSSARY_GNU__

If -e is in effect, the following sequences are recognized:

  \\0NNN   the character whose ASCII code is NNN (octal)
  \\\\     backslash
  \\a     alert (BEL)
  \\b     backspace
  \\c     suppress trailing newline
  \\f     form feed
  \\n     new line
  \\r     carriage return
  \\t     horizontal tab
  \\v     vertical tab

NOTE: your shell may have its own version of __PROGRAM_NAME__, which usually supersedes
the version described here.  Please refer to your shell's documentation
for details about the options it supports.
__CODE__(emit_bug_reporting_address ();)
#usage_end