內部命令和外部命令幫助

来源:https://www.cnblogs.com/www233ii/archive/2019/09/24/11578042.html
-Advertisement-
Play Games

    查看內部命令和外部命令幫助 一、內部命令   可以用type來判斷該命令是內部命令還是外部命令,type後加要查看的命令. 示例寫法:type enable   有的命令既有內部命令也有外部命令但是系統會優先使用 ...


    查看內部命令和外部命令幫助

一、內部命令

  可以用type來判斷該命令是內部命令還是外部命令,type後加要查看的命令.

示例寫法:type enable

[10:52:18 root@centos ~]#type enable
enable is a shell builtin  

  有的命令既有內部命令也有外部命令但是系統會優先使用內部命令。
例如:type echo ,查看到的是內部命令,但是加上 -a系統會顯示出他的外部命令路徑。

[11:32:59 root@centos ~]#type echo
echo is a shell builtin
[11:33:18 root@centos ~]#type -a echo
echo is a shell builtin
echo is /usr/bin/echo  

help查看全部內部命令的簡單說明

[09:47:49 root@centos ~]#help
GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)
These shell commands are defined internally.  Type `help' to see this list.
Type `help name' to find out more about the function `name'.
Use `info bash' to find out more about the shell in general.
Use `man -k' or `info' to find out more about commands not in this list.

A star (*) next to a name means that the command is disabled.

 job_spec [&]                               history [-c] [-d offset] [n] or history>
 (( expression ))                           if COMMANDS; then COMMANDS; [ elif COMM>
 . filename [arguments]                     jobs [-lnprs] [jobspec ...] or jobs -x >
 :                                          kill [-s sigspec | -n signum | -sigspec>
 [ arg... ]                                 let arg [arg ...]
 [[ expression ]]                           local [option] name[=value] ...
 alias [-p] [name[=value] ... ]             logout [n]
 bg [job_spec ...]                          mapfile [-n count] [-O origin] [-s coun>
 bind [-lpvsPVS] [-m keymap] [-f filename>  popd [-n] [+N | -N]
 break [n]                                  printf [-v var] format [arguments]
 builtin [shell-builtin [arg ...]]          pushd [-n] [+N | -N | dir]
 caller [expr]                              pwd [-LP]
 case WORD in [PATTERN [| PATTERN]...) CO>  read [-ers] [-a array] [-d delim] [-i t>
 cd [-L|[-P [-e]]] [dir]                    readarray [-n count] [-O origin] [-s co>
 command [-pVv] command [arg ...]           readonly [-aAf] [name[=value] ...] or r>
 compgen [-abcdefgjksuv] [-o option]  [-A>  return [n]
 complete [-abcdefgjksuv] [-pr] [-DE] [-o>  select NAME [in WORDS ... ;] do COMMAND>
 compopt [-o|+o option] [-DE] [name ...]    set [-abefhkmnptuvxBCHP] [-o option-nam>
 continue [n]                               shift [n]
 coproc [NAME] command [redirections]       shopt [-pqsu] [-o] [optname ...]
 declare [-aAfFgilrtux] [-p] [name[=value>  source filename [arguments]
 dirs [-clpv] [+N] [-N]                     suspend [-f]
 disown [-h] [-ar] [jobspec ...]            test [expr]
 echo [-neE] [arg ...]                      time [-p] pipeline
 enable [-a] [-dnps] [-f filename] [name >  times
 eval [arg ...]                             trap [-lp] [[arg] signal_spec ...]
 exec [-cl] [-a name] [command [arguments>  true
 exit [n]                                   type [-afptP] name [name ...]
 export [-fn] [name[=value] ...] or expor>  typeset [-aAfFgilrtux] [-p] name[=value>
 false                                      ulimit [-SHacdefilmnpqrstuvx] [limit]
 fc [-e ename] [-lnr] [first] [last] or f>  umask [-p] [-S] [mode]
 fg [job_spec]                              unalias [-a] name [name ...]
 for NAME [in WORDS ... ] ; do COMMANDS; >  unset [-f] [-v] [name ...]
 for (( exp1; exp2; exp3 )); do COMMANDS;>  until COMMANDS; do COMMANDS; done
 function name { COMMANDS ; } or name () >  variables - Names and meanings of some >
 getopts optstring name [arg]               wait [id]
 hash [-lr] [-p pathname] [-dt] [name ...>  while COMMANDS; do COMMANDS; done
 help [-dms] [pattern ...]                  { COMMANDS ; }  

查看某一個內部命令詳細說明:

示例寫法:help enable
help後面加上要查看的命令。

[10:45:50 root@centos ~]#help enable
enable: enable [-a] [-dnps] [-f filename] [name ...]
    Enable and disable shell builtins.
    
    Enables and disables builtin shell commands.  Disabling allows you to
    execute a disk command which has the same name as a shell builtin
    without using a full pathname.
    
    Options:
      -a    print a list of builtins showing whether or not each is enabled
      -n    disable each NAME or display a list of disabled builtins
      -p    print the list of builtins in a reusable format
      -s    print only the names of Posix `special' builtins
    
    Options controlling dynamic loading:
      -f    Load builtin NAME from shared object FILENAME
      -d    Remove a builtin loaded with -f
    
    Without options, each NAME is enabled.
    
    To use the `test' found in $PATH instead of the shell builtin
    version, type `enable -n test'.
    
    Exit Status:
    Returns success unless NAME is not a shell builtin or an error occurs.  

echo用法及原理

echo可以將你輸入的內容進行顯示,可以加參數,顯示參數標準輸出顯示。並且自動換新行。

-n: 加上-n就是不換行

-e:啟用反斜杠轉義解釋 示例:echo -e '\a' 警報聲 '\a' 加引號。

  用法示例:sleep 10;echo -e '\a' 休眠10秒,結束後警報聲提醒

-E:禁用反斜杠轉義解釋

範例:echo的help使用方法

echo內部命令幫助查看:
示例寫法:help echo

[11:33:21 root@centos ~]#help echo
echo: echo [-neE] [arg ...]
    Write arguments to the standard output.
    
    Display the ARGs on the standard output followed by a newline.
    
    Options:
      -n    do not append a newline
      -e    enable interpretation of the following backslash escapes
      -E    explicitly suppress interpretation of backslash escapes
    
    `echo' interprets the following backslash-escaped characters:
      \a    alert (bell)  警報聲提醒
      \b    backspace
      \c    suppress further output 壓縮之後的輸出 壓縮掉echo的換行
      \e    escape character
      \f    form feed
      \n    new line  換新行  本身echo就帶有換行,再加\n表示換兩行。
      \r    carriage return
      \t    horizontal tab
      \v    vertical tab
      \\    backslash
      \0nnn the character whose ASCII code is NNN (octal).  NNN can be
        0 to 3 octal digits
      \xHH  the eight-bit character whose value is HH (hexadecimal).  HH
        can be one or two hex digits
    
    Exit Status:
    Returns success unless a write error occurs. 

二、外部命令

帶有路徑的都是外部命令。
示例:passwd --help

[13:55:39 root@centos ~]#type passwd
passwd is hashed (/usr/bin/passwd)  
[13:01:45 root@centos ~]#passwd --help
Usage: passwd [OPTION...] <accountName>
  -k, --keep-tokens       keep non-expired authentication tokens
  -d, --delete            delete the password for the named account (root only)
  -l, --lock              lock the password for the named account (root only)
  -u, --unlock            unlock the password for the named account (root only)
  -e, --expire            expire the password for the named account (root only)
  -f, --force             force operation
  -x, --maximum=DAYS      maximum password lifetime (root only)
  -n, --minimum=DAYS      minimum password lifetime (root only)
  -w, --warning=DAYS      number of days warning users receives before password
                          expiration (root only)
  -i, --inactive=DAYS     number of days after password expiration when an account
                          becomes disabled (root only)
  -S, --status            report password status on the named account (root only)
  --stdin                 read new tokens from stdin (root only)

Help options:
  -?, --help              Show this help message
  --usage                 Display brief usage message  

echo外部命令查看幫助:
示例寫法:/bin/echo --help

[12:25:14 root@centos ~]#/bin/echo --help
Usage: /bin/echo [SHORT-OPTION]... [STRING]...
  or:  /bin/echo LONG-OPTION
Echo the STRING(s) to standard output.

  -n             do not output the trailing newline
  -e             enable interpretation of backslash escapes
  -E             disable interpretation of backslash escapes (default)
      --help     display this help and exit
      --version  output version information and exit

If -e is in effect, the following sequences are recognized:

  \\      backslash
  \a      alert (BEL)
  \b      backspace
  \c      produce no further output
  \e      escape
  \f      form feed
  \n      new line
  \r      carriage return
  \t      horizontal tab
  \v      vertical tab
  \0NNN   byte with octal value NNN (1 to 3 digits)
  \xHH    byte with hexadecimal value HH (1 to 2 digits)

NOTE: your shell may have its own version of echo, which usually supersedes
the version described here.  Please refer to your shell's documentation
for details about the options it supports.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
For complete documentation, run: info coreutils 'echo invocation'  

echo以上的寫法查看到的幫助用法是相同的,但是幫助內容不一樣,僅供參考。)

   可能寫的有點亂,第三次寫還有點不適應。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 我們難免大意忘掉自己的root密碼,以下操作實現破解Centos 7密碼 ...
  • 本文首發於:微信公眾號「運維之美」,公眾號 ID:Hi Linux。 「運維之美」是一個有情懷、有態度,專註於 Linux 運維相關技術文章分享的公眾號。公眾號致力於為廣大運維工作者分享各類技術文章和發佈最前沿的科技信息。公眾號的核心理念是:分享,我們認為只有分享才能使我們的團體更強大。如果你想第一 ...
  • 本文首發於:微信公眾號「運維之美」,公眾號 ID:Hi Linux。 「運維之美」是一個有情懷、有態度,專註於 Linux 運維相關技術文章分享的公眾號。公眾號致力於為廣大運維工作者分享各類技術文章和發佈最前沿的科技信息。公眾號的核心理念是:分享,我們認為只有分享才能使我們的團體更強大。如果你想第一 ...
  • 豆瓣電影 TOP250 和書籍 TOP250 爬蟲 最近開始玩 Python , 學習爬蟲相關知識的時候,心血來潮,爬取了豆瓣電影TOP250 和書籍TOP250, 這裡記錄一下自己玩的過程。 電影 TOP250 爬蟲 書籍 TOP250 爬蟲 總結 " 點擊查看我的Github " " 點擊查看我 ...
  • memory:表示可用可分配的記憶體; 結束完memblock演算法初始化前的準備工作,回到memblock演算法初始化及其演算法實現上面。memblock是一個很簡單的演算法。 memblock演算法的實現是,它將所有狀態都保存在一個全局變數__initdata_memblock中,演算法的初始化以及記憶體的申請 ...
  • 一、查看文件或目錄的許可權:ls -al 文件名/目錄名 1 keshengtao@LAPTOP-F9AFU4OK:~$ ls -al 2 total 16 3 drwxr-xr-x 1 keshengtao keshengtao 512 Sep 24 11:03 . 4 drwxr-xr-x 1 r ...
  • #學習Linux,從小白開始,知識是由淺到深,一步一步慢慢來。總有一天你就是大佬~ 首先學習下關於linux的發展和一些歷史,就像你想瞭解一個人,你得瞭解他的過去,才能足夠瞭解他。 先瞭解下開源共用精神。 複製自由:允許把軟體複製到任何人的電腦中,不限制複製數量 傳播自由:允許軟體以各種形式傳播 收 ...
  • 不管是重啟系統還是關閉系統,首先要運行 sync 命令,把記憶體中的數據寫到磁碟中。將數據由記憶體同步寫入到硬碟中。 一、shutdown命令 二、reboot命令 三、halt命令 四、poweroff命令(網上說是halt命令的鏈接,基本用法和 halt 差不多) 五、init命令 Linux系統有 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...