Unix and Linux Discussions Tagged with echo |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
71,357 |
Shell Programming and Scripting |
|
|
|
2 |
69,159 |
Shell Programming and Scripting |
|
|
|
2 |
7,487 |
Shell Programming and Scripting |
|
|
|
2 |
7,824 |
Shell Programming and Scripting |
|
|
|
6 |
7,929 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
16,876 |
Shell Programming and Scripting |
|
|
|
1 |
3,480 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,517 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
118,580 |
Shell Programming and Scripting |
|
|
|
3 |
5,541 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,839 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,311 |
What is on Your Mind? |
|
|
|
4 |
4,185 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
5,630 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,477 |
Shell Programming and Scripting |
|
|
|
4 |
2,321 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
8,749 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
27,274 |
Shell Programming and Scripting |
|
|
|
5 |
3,061 |
UNIX for Beginners Questions & Answers |
|
|
|
23 |
7,400 |
Shell Programming and Scripting |
|
|
|
4 |
3,537 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,035 |
Shell Programming and Scripting |
|
|
|
3 |
9,957 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
1,902 |
Shell Programming and Scripting |
|
|
|
3 |
11,369 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,937 |
Shell Programming and Scripting |
|
|
|
3 |
2,621 |
Shell Programming and Scripting |
|
|
|
3 |
3,989 |
Linux |
|
|
|
2 |
21,480 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
8,520 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
2,272 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,144 |
Shell Programming and Scripting |
|
|
|
3 |
2,557 |
Shell Programming and Scripting |
|
|
|
12 |
15,159 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
12,133 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,292 |
Shell Programming and Scripting |
|
|
|
5 |
17,628 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,169 |
Shell Programming and Scripting |
|
|
|
2 |
2,207 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
5,339 |
Shell Programming and Scripting |
echo(1B) SunOS/BSD Compatibility Package Commands echo(1B)
NAME
echo - echo arguments to standard output
SYNOPSIS
/usr/ucb/echo [-n] [argument]
DESCRIPTION
echo writes its arguments, separated by BLANKs and terminated by a NEWLINE, to the standard output.
echo is useful for producing diagnostics in command files and for sending known data into a pipe, and for displaying the contents of envi-
ronment variables.
For example, you can use echo to determine how many subdirectories below the root directory (/) is your current directory, as follows:
o echo your current-working-directory's full pathname
o pipe the output through tr to translate the path's embedded slash-characters into space-characters
o pipe that output through wc -w for a count of the names in your path.
example% /usr/bin/echo "echo $PWD | tr '/' ' ' | wc -w"
See tr(1) and wc(1) for their functionality.
The shells csh(1), ksh(1), and sh(1), each have an echo built-in command, which, by default, will have precedence, and will be invoked if
the user calls echo without a full pathname. /usr/ucb/echo and csh's echo() have an -n option, but do not understand back-slashed escape
characters. sh's echo(), ksh's echo(), and /usr/bin/echo, on the other hand, understand the black-slashed escape characters, and ksh's
echo() also understands a as the audible bell character; however, these commands do not have an -n option.
OPTIONS
-n Do not add the NEWLINE to the output.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWscpu |
+-----------------------------+-----------------------------+
SEE ALSO
csh(1), echo(1), ksh(1), sh(1), tr(1), wc(1), attributes(5)
NOTES
The -n option is a transition aid for BSD applications, and may not be supported in future releases.
SunOS 5.11 3 Aug 1994 echo(1B)