【Linux】一步一步学Linux——exec命令(208)
生活随笔
收集整理的這篇文章主要介紹了
【Linux】一步一步学Linux——exec命令(208)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
00. 目錄
文章目錄
- 00. 目錄
- 01. 命令概述
- 02. 命令格式
- 03. 常用選項
- 04. 參考示例
- 05. 附錄
01. 命令概述
exec命令用于調(diào)用并執(zhí)行指令的命令。exec命令通常用在shell腳本程序中,可以調(diào)用其他的命令。如果在當前終端中使用命令,則當指定的命令執(zhí)行完畢后會立即退出終端。
02. 命令格式
用法:exec [-cl] [-a 名稱] [命令 [參數(shù) ...]] [重定向 ...]03. 常用選項
選項: -a 名稱 作為第0個參數(shù)傳遞給 COMMAND 命令 -c 在一個空環(huán)境中執(zhí)行 COMMAND 命令 -l 在COMMAND 命令的第0個參數(shù)中加一個短線04. 參考示例
4.1 執(zhí)行shell命令,然后退出
[root@localhost ~]# exec ls anaconda-ks.cfg openssl-1.1.1-pre6-dev.zip test 視頻 音樂 bak openssl-master test.cpp 圖片 桌面 initial-setup-ks.cfg oracle_client_11gR2.tar.gz 公共 文檔 instantclient_11_2 share 模板 下載 [deng@localhost ~]$4.2 在一個空環(huán)境中執(zhí)行命令
[deng@localhost ~]$ exec -c ls bak oradiag_deng sz12 ?????? ?????? bj34 projects test.c ?????? ?????? instantclient_11_2 scott_data.sql test.cpp ?????? ?????? oracle_client_11gR2.tar.gz share test.sh ?????? ??????4.3 find和exec綜合使用
[deng@localhost ~]$ find ./ -name "test.txt" -exec ls -al {} \; -rw-rw-r-- 1 deng deng 0 9月 2 11:09 ./test.txt [deng@localhost ~]$05. 附錄
參考:【Linux】一步一步學Linux系列教程匯總
總結(jié)
以上是生活随笔為你收集整理的【Linux】一步一步学Linux——exec命令(208)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Linux】一步一步学Linux——e
- 下一篇: 【Linux】一步一步学Linux——l