theshell.ch/site/pages/cmd/advanced/echo.html
bevilj ee255aac27 code review fpr basic and advanced pages
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@169 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-14 08:56:17 +00:00

25 lines
593 B
HTML

---
layout: page
author: Alessandro Luini
category-page: advanced
category-title: Advanced commands
tags: echo calculator print
title: echo
---
<p>
In computing, <code>echo</code> is a command in Unix operating systems that outputs the
strings it is being passed as arguments.<br>
It is a command typically used to output status text to the screen or a
computer file, or as a source part of a pipeline.<br>
To use this simple command just type "echo" with the topic we want to
print. The computer will return your argument as a string
<pre>
echo "hello world"
hello world
</pre>
</p>