📄 readme
字号:
Teach Yourself Shell Programming in 24 Hours By Sriranga Veeraraghavan <ranga@soda.berkeley.edu>### Introduction ###This is the REAMDE file for the example from the SAMS book TeachYourself Shell Programming in 24 Hours.The URL for this tar.Z file is:http://www.csua.berkeley.edu/~ranga/downloads/tysp1.tar.Z### Downloading and Decompressing ### Once you have downloaded this file, change to the directory where thefile was saved and execute the following commands:$ uncompress tysp1.tar.Z$ tar Pxvf tysp1.tarThis will create a directory named tysp1 that contains the examplesfrom this book. The examples are stored in separate directories, based on the chapterin which the example occurs. Some chapters do not have any examples,thus there are no directories for them.Once you have uncompressed and untar'ed the examples, the tysp1directory should look something like the following (/bin/ls -l):total 24-rw-r--r-- 1 ranga users 3286 Mar 31 14:26 READMEdrwxr-xr-x 2 ranga users 1024 Mar 15 22:57 ch02drwxr-xr-x 2 ranga users 1024 Mar 17 08:16 ch07drwxr-xr-x 2 ranga users 1024 Mar 31 13:42 ch08drwxr-xr-x 2 ranga users 1024 Mar 17 08:31 ch10drwxr-xr-x 2 ranga users 1024 Mar 29 00:16 ch11drwxr-xr-x 3 ranga users 1024 Mar 29 00:35 ch12drwxr-xr-x 3 ranga users 1024 Mar 29 01:05 ch13drwxr-xr-x 2 ranga users 1024 Mar 31 13:42 ch14drwxr-xr-x 2 ranga users 1024 Mar 31 13:42 ch15drwxr-xr-x 2 ranga users 1024 Mar 30 13:52 ch16drwxr-xr-x 2 ranga users 1024 Mar 31 13:42 ch17drwxr-xr-x 2 ranga users 1024 Mar 30 15:20 ch19drwxr-xr-x 2 ranga users 1024 Mar 31 13:42 ch20drwxr-xr-x 2 ranga users 1024 Mar 31 13:50 ch21drwxr-xr-x 2 ranga users 1024 Mar 31 14:15 ch22drwxr-xr-x 2 ranga users 1024 Mar 31 14:24 ch23drwxr-xr-x 2 ranga users 1024 Mar 31 14:31 extrasIf your tysp1 directory looks different, try to extract the contentsof the compressed tar file again. If your directory looks the same,you are ready to go.### Naming convention for examples/solutions ###The examples in directory are numbered according to the followingconvention:ex-xx-yy_name.shWhere:xx -> The chapter in which the example occurs (ex. 07)yy -> The relative position of the example in the chapter. The first example script is 01, the second is 02 and so on. name -> The name of the example. Most of the examples do not have names in the book, so these are short descriptive strings that are useful for quickly identifying a script, based on its function. Some examples that are explicitly named in the book do not follow thisconvention and stored with the name given in the book. The directories for some of the chapters also include solutions for theQuestions from that chapter. In general the solutions are named as follows;qu-xx-yy.shWhere :xx -> The chapter in which the question occurs (ex. 07)yy -> The question number in the chapterMany of the examples are started using the following line:#!/bin/sh -vin order to printout the commands as the shell reads them. This is tohelp you determine what the examples are doing. To turn the off justedit the first line of the script.### Supported Systems and Contact Information ###There is no warranty of any kind on these examples. I have tried tomake the examples as portable as possible, and to this end I havetested each example on the following versions of UNIX: * Sun Solaris versions 2.5.1, 2.6, 2.7 * Hewlett-Packard HP-UX versions 10.10, 10.20, 11.0 * Red Hat Linux versions 4.2, 5.1, 5.2 * FreeBSD version 2.2.6It is possible that some of the examples may not work on otherversions of UNIX. If you encounter a problem or have a suggestionabout improvements to the examples or the content of the book, pleasefeel free to contact me at the following email address:ranga@soda.berkeley.edu I appreciate any suggestions and feedback you have regarding thisbook.Thanks,----ranga <ranga@soda.berkeley.edu>$Id: README,v 1.2 1999/03/29 09:11:40 ranga Exp ranga $
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -