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_five
- s rights on directories.=== * r allows users to list files in the directory; * w means that users ma... read write and execute permissions on the file biglist for the group and others, type % chmod go-rwx biglist This will leave the other permissions unaffected... To give read and write permissions on the file biglist to all, <code>compsci-user@tim:~$ chmod a+rw big
- linux_tutorial_one
- 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
- 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