shell中exec命令

一、find中的-exec參數php

在當前目錄下(包含子目錄),查找全部txt文件並找出含有字符串"bin"的行html

find ./ -name "*.txt" -exec grep "bin" {} \;linux

在當前目錄下(包含子目錄),刪除全部txt文件shell

find ./ -name "*.txt" -exec rm {} \;bash

Execute  command;  true  if 0 status is returned.  All following arguments to find are taken to be arguments to the command until  an  argument  consisting of `;' is encountered.  The string `{}' is replaced by the current file name being processed  everywhere  it occurs in the arguments to the command, not just in arguments where it is alone.ui

 

-exec command:command 爲其餘指令,-exec後面可再接額外的指令來處理搜尋到的結果。this

 

 

 

{ }表明的是「由 find 找到的內容」,如上圖所示,找到的結果會被放置到 { } 位置中;
-exec一直到 \; 是關鍵字,表明找到額外動做的開始(-exec)到結束(\),在這中間的就是找到指令內的額外動做spa

 

由於「;」在bash的環境下是有特殊意義的,所以利用反斜線來跳脫。.net

 

以上,來自鳥哥[http://linux.vbird.org/linux_basic/0220filemanager.php]的相關介紹二、shell的內置命令命令execunix

#!/bin/ksh

export LOG=/tmp/test.log

exec >> $LOG 2>&1

ls -l kevin.txt

exit 0

exec [arg]

If arg is present, executes arg in place of this shell.

(arg will replace this shell).

shell的內建命令exec將並不啓動新的shell,而是用要被執行命令替換當前的shell進程,而且將老進程的環境清理掉,並且exec命令後的其它命令將再也不執行。

所以,若是你在一個shell裏面,執行exec ls那麼,當列出了當前目錄後,這個shell就本身退出了,由於這個shell進程已被替換爲僅僅執行ls命令的一個進程,執行結束天然也就退出了。爲了不這個影響咱們的使用,通常將exec命令放到一個shell腳本里面,用主腳本調用這個腳本,調用點處能夠用bash a.sh,(a.sh就是存放該命令的腳本),這樣會爲a.sh創建一個sub shell去執行,當執行到exec後,該子腳本進程就被替換成了相應的exec的命令。

source命令或者」.」,不會爲腳本新建shell,而只是將腳本包含的命令在當前shell執行。

不過,要注意一個例外,當exec命令來對文件描述符操做的時候,就不會替換shell,並且操做完成後,還會繼續執行接下來的命令。

exec 3<&0:這個命令就是將操做符3也指向標準輸入。

原文

[1]http://blog.chinaunix.net/uid-20652643-id-1906436.html

[2]http://zhgw01.blog.163.com/blog/static/1041481220098944425489/

[3]http://blog.csdn.net/clozxy/article/details/5818465

[4]http://www.cnblogs.com/zhaoyl/archive/2012/07/07/2580749.html

相關文章
相關標籤/搜索