print is the output mechanism of the POSIX shell.
Syntax
print[ -Rnprs][ -ufiledes]][ arg]... |
If it is invoked with no options or with the option
In raw mode, the escape conventions of echo are ignored.
No newline is added to the output.
The arguments are written to the pipe of the process spawned with |&, not to standard output.
The arguments are written to the history file, not to standard output.
Arguments are written to the single-digit file descriptor filedes, not to standard output.
see echo |
Example 1
Various output possibilities for the string abcdef.
|
Example 2
Output to a file via the file descriptor.
For further examples, see echo. |
See also
echo, read |