Search
You can find the results of your search below.
Fulltext results:
- linux_tutorial_three
- a command. For example, to create a file called **list1** containing a list of fruit, type <code>compsci-user@tim:~$ cat > list1</code> Then type in the names of some fruit. Pr... h normally goes to the screen, into a file called list1 To read the contents of the file, type <code>c
- linux_tutorial_one
- ===== Linux Tutorial ===== ==== 1.1 Listing files and directories ==== __**ls**__ (list) When you first login, your current working directory ... he **ls** command ( lowercase L and lowercase S ) lists the contents of your current working directory. ... cause all the files in your home directory to be listed, but only those ones whose name does not begin
- linux_tutorial_five
- type <code>compsci-user@tim:~$ ls -l (l for long listing!)</code> You will see that you now get lots o... s rights on directories.=== * r allows users to list files in the directory; * w means that users ma... equire user interaction e.g. pine</note> ====5.4 Listing suspended and background processes==== When a... kgrounded or suspended, it will be entered onto a list along with a job number. To examine this list, ty
- linux_tutorial_four
- uff directory, type <code>compsci-user@tim:~$ ls list*</code> This will list all files in the current directory starting with **list....** Try typing <code>compsci-user@tim:~$ ls *list</code> This will list all files in the current d
- linux_tutorial_seven
- ou can usually use the **--help** option to get a list of interesting options for a particular configure... rce code==== Go into your download directory and list the contents. <code> compsci-user@tim:~$ cd dow... ser@tim:~$ tar -xvf units-1.74.tar</code> Again, list the contents of the download directory, then go t... ing everything worked). % cd ~/units174 If you list the contents of the units directory, you will see
- linux_tutorial_eight
- oth variables always represent the same directory list, and altering either automatically causes the oth... the number of shell commands saved in the history list, you need to set the shell variable history. It i... ~/.cshrc</code> Add the following line AFTER the list of other commands. set history = 200 Save the f... , add the following line to your .cshrc AFTER the list of other commands. set path = ($path ~/units174/
- linux_tutorial_six
- ATE for bash </note> The C shell keeps an ordered list of all the commands that you have entered. Each c... compsci-user@tim:~$ history (show command history list)</code> If you are using the C shell, you can us... most recent command) % !5 (recall 5th command in list) % !grep (recall last command starting with grep