Search

You can find the results of your search below.

linux_tutorial_five
9 Hits, Last modified:
s rights on directories.=== * r allows users to list files in the directory; * w means that users ma... kgrounded or suspended, it will be entered onto a list along with a job number. To examine this list, type <code>compsci-user@tim:~$ jobs</code> An example of a job list could be * [1] Suspended sleep 100 * [2] Run
linux_tutorial_one
9 Hits, Last modified:
1 Listing files and directories ==== __**ls**__ (list) When you first login, your current working dire... them unless you are very familiar with Linux! To list all files in your home directory including those ... <code>compsci-user@tim:~$ ls testdir</code> to list the contents of your //testdir// directory. Now ... rrect directory, or specify its full pathname. To list the contents of your backups directory, you must
linux_tutorial_four
8 Hits, Last modified:
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_three
7 Hits, Last modified:
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_seven
5 Hits, Last modified:
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
4 Hits, Last modified:
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
3 Hits, Last modified:
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