1
edit
Changes
→18 Answer
18. What will this command do to the existing file "ocean"? date >ocean
=== 18 Answer ===
<pre>Nes: It will redirect standard output of command "date" to the file "ocean". The file "ocean" iwll be replaced.</pre>19. What will this command do to the existing file "sea"? date >>sea
=== 19 Answer ===
Nes: It will redirect standard output of command "date" and append to the file "sea". The newer output will be writen at the end of the file "sea".