Beginning Linux Programming 学习-chapter2-Shell programming-Pipes and Redirection

“为了从事创造性工作,人类需要孤独,可是在孤独中,广义的人类仍存在于内心。”——(德国)奥铿
                                               

uninx, linux的初衷是不使用图形界面,而是使用commnd line,随着不断发展,command line不断壮大,shell对lilnux来说是一个非常重要的部分,对于自动完成一些任务是非常方便的!

为什么用shell?

首先,shell编程方便,快捷,另外,最基本的linux系统中也可以支持shell,可以用shell 快速实现你的一些想法!

shell与windows中的command prompt类似,但是更加强大。 shell program一般被叫做script,一边运行一遍编译。

什么是Shell:

A shell is a program that acts as the interface between you and the Linux system, enabling you to enter commands for the operating system to execute. In that respect, it resembles the Windows command prompt, but as mentioned earlier, Linux shells are much more powerful.

For example, input and output can be redirected using < and >, data piped between simultaneously executing programs using |, and output from a subprocess grabbed  by using $(...).

系统中可以有多种shell程序On Linux it’s quite feasible to have multiple shells installed, with different users able to pick the one they prefer. The following Figure  shows how the shell (two shells actually, both bash and csh) and other programs sit around the Linux kernel.


bash是最常用的一种shell:
On Linux, the standard shell that is always installed as
/bin/sh is called bash (the GNU Bourne-Again SHell), from the GNU suite of tools. On most Linux distributions, the program /bin/sh, the default shell, is actually a link to the program /bin/bash.

You can check the version of bash you have with the following command:
$ /bin/bash --version
GNU bash, version 3.2.9(1)-release (i686-pc-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc.


如果系统中默认的shell 不是bash,如何使用bash呢:

To change to a different shell — if bash isn’t the default on your system, for example —just execute the desired shell’s program (e.g., /bin/bash) to run the new shell and change the command prompt.


各种shell小结:



Pipes and Redirection 管道和重定向

$ ls -l > lsoutput.txt   saves the output of the ls command into a file called lsoutput.txt.  Redirects the standard output into a file by using the > operator .  By default, if the file already exists, then it will be overwritten. If you want to change the default behavior, you can use the command set -o noclobber (or set -C)(禁止重定向覆盖已存文件 ), which sets the noclobber option to prevent a file from being overwritten using redirection. You can cancel this option using set +o noclobber(允许重定向覆盖已存文件 )

File descriptor 0 is the standard input to a program,
file descriptor 1 is the standard output

file descriptor 2 is the standard error output.
You can redirect each of these independently. In fact, you can also redirect other file descriptors, but it’s unusual to want to redirect any other than the standard ones: 0, 1, and 2.

将指令的输出追加到文件末尾:
ps >> lsoutput.txt 
will append the output of the ps command to the end of the specified file
 

To redirect the standard error output, preface the > operator with the number of the file descriptor you wish to redirect. Because the standard error is on file descriptor 2, use the 2> operator. This is often useful to discard error information and prevent it from appearing on the screen.

将指令的标准输出和错误输出输出到同两个文件中:
Suppose you want to use the
kill command to kill a process from a script. There is always a slight risk that the process will die before the kill command is executed. If this happens, kill will write an error message to the standard error output, which, by default, will appear on the screen. By redirecting both the standard output and the error, you can prevent the kill command from writing any text to the screen.
$ kill -HUP  1234  >killout.txt  2>killerr.txt  will put the output and error information into separate files

将指令的标准输出和错误输出输出到同一个文件中:
If you prefer to capture both sets of output into a single file, you can use the
>& operator to combine the two outputs. Therefore,
$ kill -1 1234 >killouterr.txt 2>&1
will put both the output and error outputs into the same file. Notice the order of the operators. This reads as “redirect standard output to the file killouterr.txt, and then direct standard error to the same place as the standard output.” If you get the order wrong, the redirect won’t work as you expect.

将指令的标准输出和错误输出全部discard:

Because you can discover the result of the
kill command using the return code , you don’t often want to save either standard output or standard error. You can use the Linux universal “bit bucket” of /dev/null to efficiently discard the entire output, like this:
$ kill -1 1234 >/dev/null 2>&1

Redirecting Input:
Rather like redirecting output, you can also redirect input. For example,
$ more < killout.txt  --------??
Obviously, this is a rather trivial example under Linux; the Linux more command is quite happy to accept filenames as parameters, unlike the Windows command-line equivalent.

Pipes 管道
You can connect processes using the pipe operator ( | ). In Linux, unlike in MS-DOS, processes connected by pipes can run simultaneously and are automatically rescheduled as data flows between them. As a simple example, you could use the sort command to sort the output from ps.
If you don’t use pipes, you must use several steps, like this:
$ ps > psout.txt
$
sort psout.txt > pssort.out   //sort是排序命令
A much more elegant solution is to connect the processes with a pipe:
$ ps | sort > pssort.out    //sort作用于ps的输出,sort的输出保存在passort.out中

Because you probably want to see the output paginated on the screen, you could connect a third process, more, all on the same command line:
$ ps | sort | more

There's practically no limit to the permissible number of connected processes. Suppose you want to see all the different process names that are running excluding shells. You could use
$ ps –xo comm | sort | uniq | grep -v sh | more // ps -xo comm的输出被送给sort指令。uniq用于去掉重复的东西;grep -v sh to remove the process named sh.

注意:If you have a string of commands, the output file is created or written to immediately when the set of commands is created, so never use the same filename twice in a string of commands. If you try to do something like
cat mydata.txt | sort | uniq > mydata.txt
you will end up with an empty file, because you will overwrite the mydata.txt file before you read it.

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

Shell 编程方式之一: Interactive Programs

Just typing the shell script on the command line is a quick and easy way of trying out small code fragments. 例如,又很多c文件,你想搜索包含POSIX字符串的文件:

$ for file in *   //file是循环变量
> do
> if grep -l POSIX $file //使用一个定义过的变量,只要在变量名前面加美元符号即可
> then
> more $file  //displays the whole contents of the file to the screen
> fi

> done

说明: grep -l 是 列出文件内容符合指定的范本样式的文件名称。
            用到了 基本的if-then-fi 判断语句
当shell希望你继续输入时,提示符会由$变为>。当你最后输入done之后,shell会自动判断你输入完毕,然后马上执行你写的整个东西。

Shell 编程方式之二: Writing Scripts

例子:

#!/bin/sh
# first
# This file looks through all the files in the current
# directory for the string POSIX, and then prints the names of
# those files to the standard output.
for file in *
do
    if grep -q POSIX $file
    then
        echo $file
    fi
done
exit 0
行注释以#开头;  #!/bin/sh , is a special form of comment,  the #! characters tell the system that the argument that follows on the line is the program to be used to execute this file. In this case, /bin/sh is the default shell program.

The
exit command ensures that the script returns a sensible exit code (more on this later in the chapter). This is rarely checked when programs are run interactively, but if you want to invoke this script from another script and check whether it succeeded, returning an appropriate exit code is very important. Even if you never intend to allow your script to be invoked from another, you should still exit with a reasonable code. Have faith in the usefulness of your script: Assume it may need to be reused as part of another script someday.  A zero denotes success in shell programming.

linux不在文件的后缀:Linux, and UNIX in general, rarely makes use of the filename extension to determine the type of a file. You could have used .sh or added a different extension, but the shell doesn’t care. 

Making a Script Executable
假设你写了一个脚本名字为first,然后你可用下面的方式运行它
1)直接使用shell程序 /bin/sh first  需要first就在当前你的command 窗口的当前目录中;如果不在
   那就需要你将first的路径写全。
2)执行 chmod +x first使得first脚本可执行,然后 ./first,你也可以在PATH中添加它


你可以专门建立一个目录存储你自己写的可执行脚本,例如/usr/local/bin,加入PATH路径,以后可以方便实用。


Shell Syntax:
以后用到再具体看。The shell is quite an easy programming language to learn, not least because it's easy to test small program fragments interactively before combining them into bigger scripts. You can
use the bash shell to write quite large, structured programs.














  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

First Snowflakes

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值