Table of Contents
1. The concept of command
2. Command alias
3. Internal commands
Home Operation and Maintenance Linux Operation and Maintenance Basic command classification of LInux system operation explanation

Basic command classification of LInux system operation explanation

Jul 17, 2017 am 09:33 AM
linux Classification Base

Basic command classification of LInux system operation explanation

1. The concept of command

  • Execution process of command

    When the system executes an external command for the first time The hash cache table is empty. The system will first search for the command from the PTAH path. After finding it, the path will be added to the Hasa cache. When the command is executed again, it will be executed directly from the hash path. If it exists, it will be executed directly. If it does not exist, it will be executed directly. The search will continue from the path under PATH, and the Hash table can improve the calling rate of the command.

  • Priority of command

    alias -------------------------- ----------------Alias ​​
    builtin-------------------------------- -Internal command
    ˆ ˆhash-------------------------Cache table
    ˆ ˆˆˆˆhash-------------------------- ----Executable program or script (external command)

  • Internal command and external command

    The internal command is the shell’s own
    External commands are installed by default when installing the system, and have corresponding paths in the file system

  • Check whether the command is an internal command or an external commandtype [commnd ]

    [root@centos6 ~]# type cat                  #判断cat命令,外部命令显示文件路径
    cat is /bin/cat
    [root@centos6 ~]# type cd                   #判断cd命令
    cd is a shell builtin
    Copy after login

    2. Command alias

    The named alias is only valid in the current process
    If you want it to be permanently valid, it must be defined in the configuration file
    Only for the current user: ~/.bashrc
    Valid for all users: /etc/bashrc

  • View all aliases in the processalias

    [root@centos6 ~]#alias
    alias cp='cp -i'
    alias l.='ls -d .* --color=auto'
    alias ll='ls -l --color=auto'
    alias ls='ls --color=auto'
    ......
    Copy after login
  • Define aliasalias NAME="VALUE"

    [root@centos6 ~]#alias aubin=cat
    [root@centos6 ~]#aubin test
    hello world
    Copy after login
  • Delete alias

    [root@centos6 ~]#unalias aubin
    [root@centos6 ~]#aubin test
    -bash: aubin: command not found
    Copy after login
  • Define the alias that is permanently effective for the current user

    [root@centos6 ~]#vim .bashrc 
    # .bashrc
    # User specific aliases and functions
    alias rm='rm -i'
    alias cp='cp -i'
    alias mv='mv -i'
    alias aubin=cat                                # <<<-----此处定义别名
    # Source global definitions
    if [ -f /etc/bashrc ]; then
        . /etc/bashrc
    fi
    [root@centos6 ~]#. .bash                       #立即生效
    Copy after login
  • Definition The alias that is effective for the specified user

    [root@centos6 ~]#cd ~ li
    [root@centos6 li]#vim .bashrc                 #编辑用户目录下的.bashrc
    Copy after login
  • DefinitionAll usersEffective aliases

    [root@centos6 ~]#vim /etc/bashrc
    alias aubin=cat                                # <<<-----加入定义别名
    [root@centos6 ~]#. /etc/bashrc                 #立即生效
    Copy after login

    3. Internal commands

The shell program finds the executable program or code corresponding to the typed command. After analysis by the shell, it is submitted to the kernel to allocate resources and run it.

  • View all internal commands

    [root@centos6 ~]#help
    Copy after login
    [root@centos6 ~]#enable
    enable .
    enable :
    enable [
    enable alias
    enable bg
    enable bind
    ......
    Copy after login
  • Disable and enable internal commandsenable

    [root@centos6 li]#enable -n cd                 #禁用内部命令
    [root@centos6 li]#enable cd                    #启用内部命令
    Copy after login
  • Disable internal commandsInvalid

    [root@centos6 li]#enable -n pwd
    [root@centos6 li]#enable -n                    #查看禁用的内部命令或如下图用help
    enable -n pwd
    Copy after login

    You can also check the disabled commands byhelp*# before the command ##Represents that the command has been used】
    黄色方框 中命令前的*代表命令已禁用Disables the internal command
    enable -n pwd can still be used

    [root@centos6 li]#pwd
    /home/li
    Copy after login
    Use

    which to view the command The executable file

    [root@centos6 li]#which pwd
    /bin/pwd
    Copy after login
    When the internal command is disabled, continue to search the Hash table and

    \(PATH. Until the /bin/pwd# is found in \)PATH according to the bash priority. ##'s executable file will run it.

  • View disabled internal commands
  • [root@centos6 li]#enable -n
    enable -n cd
    enable -n pwd
    Copy after login

    Or use the

    help

    command as shown above

4.HASH cache table

is used to display and clear the hash table. When executing the command, the system will first query the hash table.

    View the command cache
  • hash

    <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]# hash   hits  command    3    /usr/bin/cal    1    /usr/bin/yum</pre><div class="contentsignin">Copy after login</div></div> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]# 查看详细的Hash表 [root@centos6 ~]#hash -l builtin hash -p /bin/dd dd builtin hash -p /usr/bin/yum yum</pre><div class="contentsignin">Copy after login</div></div>

  • Add content to the Hash table
  • hash - p path command

    <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]#将cat定义一个别名存在hash表 [root@centos6 ~]#hash -p /bin/cat aubin   [root@centos6 ~]#aubin test hello world</pre><div class="contentsignin">Copy after login</div></div>

  • Print the path of the command in the Hash table
  • hash -t command

    <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]#hash -t aubin /bin/cat</pre><div class="contentsignin">Copy after login</div></div>

  • Delete Specify the command in the Hash table
  • hash -d command

    <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]#hash -d aubin</pre><div class="contentsignin">Copy after login</div></div>

  • Delete all commands in the Hash table
  • hash -r

    <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]# hash -r</pre><div class="contentsignin">Copy after login</div></div>

  • View the path of the command
  • which

    <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">[root@centos6 ~]# which cat            #查看命令的路径,以第一个路径为准 /bin/cat [root@centos6 ~]# which -a cat         #查看命令所有路径,一个命令可能有多个路径 /bin/cat /usr/local/bin/cat</pre><div class="contentsignin">Copy after login</div></div>

    5. External command

    The external command is an executable file. When executed When issuing an external command, the system will execute the corresponding executable file in the file directory.

  • List the path of the command
  • [root@centos6 /]#which echo                    #列出命令的路径
    /bin/echo
    Copy after login
    [root@centos6 /]#which cp                      #which列出文件路径会显示别名
    alias cp='cp -i'
        /bin/cp
    [root@centos6 /]#which --skip-alias cp         #列出文件路径而不显示别名
    /bin/cp
    Copy after login

  • List all the paths of the command. When multiple bash have the same command, the command has Multiple paths.
  • [root@centos6 /]#which -a echo              
    /bin/echo
    Copy after login

  • List the paths to commands and help manuals
  • [root@centos6 /]#whereis echo
    echo: /bin/echo /usr/share/man/man1/echo.1.gz /usr/share/man/man1p/echo.1p.gz
    Copy after login

The above is the detailed content of Basic command classification of LInux system operation explanation. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

gate.io official website registration installation package link gate.io official website registration installation package link Feb 21, 2025 pm 08:15 PM

Gate.io is a highly acclaimed cryptocurrency trading platform known for its extensive token selection, low transaction fees and a user-friendly interface. With its advanced security features and excellent customer service, Gate.io provides traders with a reliable and convenient cryptocurrency trading environment. If you want to join Gate.io, please click the link provided to download the official registration installation package to start your cryptocurrency trading journey.

How to Install phpMyAdmin with Nginx on Ubuntu? How to Install phpMyAdmin with Nginx on Ubuntu? Feb 07, 2025 am 11:12 AM

This tutorial guides you through installing and configuring Nginx and phpMyAdmin on an Ubuntu system, potentially alongside an existing Apache server. We'll cover setting up Nginx, resolving potential port conflicts with Apache, installing MariaDB (

See all articles