May 2017
Beginner
552 pages
28h 47m
English
$ echo "This is a sample text 1" > temp.txt
This stores the echoed text in temp.txt. If temp.txt already exists, the single greater-than sign will delete any previous contents.
$ echo "This is sample text 2" >> temp.txt
$ cat temp.txt
This is sample text 1
This is sample text 2
The next recipes demonstrate redirecting stderr. A message is printed to the stderr stream when a command generates an error message. Consider the following example:
$ ls + ls: cannot access +: No such file or directory
Here + is an invalid argument and hence an error is returned.