October 17th, 2018

Let’s make an experiment

Try this. It may not work

Try this using Chrome or Firefox. Microsoft browsers do not work well

Please open the page https://rstudio.iu.edu.tr:4200/

It may complain about Security. Just say yes.

If it works, you will connect to the server from the browser

Concatenating files

We will now use the cat command to join (concatenate) list1 and list2 into a new file called biglist. Write

$ cat list1 list2 > biglist

What this is doing is reading the contents of list1 and list2 in turn, then outputing the text to the file biglist

See the result

To read the contents of the new file, type

$ cat biglist

Redirecting the Input

We use the < symbol to redirect the input of a command.

The command sort alphabetically or numerically sorts a list. Type

$ sort

Write the names of some animals. Press [Return] after each one.

dog
cat
bird
ape
^D

(control d to stop)

Output of sort

The output will be

ape
bird
cat
dog

Replacing the keyboard by a file

Using < you can redirect the input to come from a file rather than the keyboard. For example, to sort the list of fruit, type

$ sort < biglist

and the sorted list will be output to the screen.

To output the sorted list to a file, type,

$ sort < biglist > slist

Use cat to read the contents of the file slist

Pipes

To see who is on the system with you, type

$ who

One method to get a sorted list of names is to type,

$ who > names.txt
$ sort < names.txt

This is a bit slow and you have to remember to remove the temporary file names.txt when you have finished

There is a better way

What you really want to do is connect the output of the who command directly to the input of the sort command

This is exactly what pipes do

The symbol for a pipe is the vertical bar |

Example

For example, typing

$ who | sort

will give the same result as above, but quicker and cleaner.

To find out how many users are logged on, type

$ who | wc -l

Exercise

Using pipes, display all lines of list1 and list2 containing the letter ‘p’, and sort the result.

Summary

Command Meaning
command > file redirect standard output to a file
command >> file append standard output to a file
command < file redirect standard input from a file
command1 | command2 pipe the output of command1 to the input of command2
cat file1 file2 > file0 concatenate file1 and file2 to file0
sort sort data
who list users currently logged in

Send me your commands

If you did connect to the server, please send me an email

In the subject write your student number

Use the command history. Copy its output and paste in the email body

Send you answers to andres.aravena+icsp@istanbul.edu.tr

References