Which command in a script would display the text Hello, World to the screen followed by a new line?

Buy this Shell Scripting Tutorial as a PDF for only $5

3. A First Script

For our first shell script, we'll just write a script which says "Hello World". We will then try to get more out of a Hello World program than any other tutorial you've ever read :-)
Create a file (first.sh) as follows:


first.sh

#!/bin/sh
# This is a comment!
echo Hello World        # This is a comment, too!

The first line tells Unix that the file is to be executed by /bin/sh. This is the standard location of the Bourne shell on just about every Unix system. If you're using GNU/Linux, /bin/sh is normally a symbolic link to bash (or, more recently, dash).

The second line begins with a special symbol: #. This marks the line as a comment, and it is ignored completely by the shell.
The only exception is when the very first line of the file starts with #! - as ours does. This is a special directive which Unix treats specially. It means that even if you are using csh, ksh, or anything else as your interactive shell, that what follows should be interpreted by the Bourne shell.
Similarly, a Perl script may start with the line #!/usr/bin/perl to tell your interactive shell that the program which follows should be executed by perl. For Bourne shell programming, we shall stick to #!/bin/sh.

The third line runs a command: echo, with two parameters, or arguments - the first is "Hello"; the second is "World".
Note that echo will automatically put a single space between its parameters.
The # symbol still marks a comment; the # and anything following it is ignored by the shell.

now run chmod 755 first.sh to make the text file executable, and run ./first.sh.
Your screen should then look like this:

$ chmod 755 first.sh
$
./first.sh
Hello World
$

You will probably have expected that! You could even just run:

$ echo Hello World
Hello World
$

Now let's make a few changes.
First, note that echo puts ONE space between its parameters. Put a few spaces between "Hello" and "World". What do you expect the output to be? What about putting a TAB character between them?
As always with shell programming, try it and see.
The output is exactly the same! We are calling the echo program with two arguments; it doesn't care any more than cp does about the gaps in between them. Now modify the code again:

#!/bin/sh
# This is a comment!
echo "Hello      World"       # This is a comment, too!

This time it works. You probably expected that, too, if you have experience of other programming languages. But the key to understanding what is going on with more complex command and shell script, is to understand and be able to explain: WHY?
echo has now been called with just ONE argument - the string "Hello    World". It prints this out exactly.
The point to understand here is that the shell parses the arguments BEFORE passing them on to the program being called. In this case, it strips the quotes but passes the string as one argument.
As a final example, type in the following script. Try to predict the outcome before you run it:


first2.sh

#!/bin/sh
# This is a comment!
echo "Hello      World"       # This is a comment, too!
echo "Hello World"
echo "Hello * World"
echo Hello * World
echo Hello      World
echo "Hello" World
echo Hello "     " World
echo "Hello "*" World"
echo `hello` world
echo 'hello' world

Is everything as you expected? If not, don't worry! These are just some of the things we will be covering in this tutorial ... and yes, we will be using more powerful commands than echo!

Which command in a script would display the text Hello, World to the screen followed by a new line?
Which command in a script would display the text Hello, World to the screen followed by a new line?
Which command in a script would display the text Hello, World to the screen followed by a new line?

Back: Philosophy Next: Variables (Part 1)

Books and eBooks

Contact

You can mail me with this form. If you expect a reply, please ensure that the address you specify is valid. Don't forget to include the simple addition question at the end of the form, to prove that you are a real person!

What is the command that will print Hello, World at Screen Linux?

Echo Command Syntax The echo command in Linux is used to display a string provided by the user. For example, use the following command to print Hello, World! as the output: echo Hello, World! Note: Using the echo command without any option returns the provided string as the output, with no changes.

How do I write a script that prints Hello, World followed by a new line to the standard output?

The procedure is as follows:.
Create a new file called hello.sh using a text editor such as nano or vi/vim: $ nano hello.sh..
Add the following code: #!/bin/bash echo "Hello World".
Set the script executable permission by running chmod command: ... .
Run or execute the script using any one of the following syntax:.

Which code displays the Hello message?

Everything between these two comprises the body of the main function and are called the blocks. printf("Hello World"); This line tells the compiler to display the message "Hello World" on the screen. This line is called a statement in C.

How do you write a script to print Hello, World in Unix?

Stepwise Implementation.
Step 1: Create an empty file named ” HelloWorld ” in the terminal. We can create an empty file using the following commands: $ touch HelloWorld.sh. ... .
Step 2: Open file. ... .
Step 3: Give permission to execute the script. ... .
Step 4: Run the script..