zoukankan      html  css  js  c++  java
  • Bash基础——内置命令

    前言

    Shell有很多内置在其源代码中的命令。由于命令是内置的,所以Shell不必到磁盘上搜索它们。内置命令执行速度更快,不同的Shell内置命令有所不同。

    如何查找内置命令

    之前查了好久怎么收索内置命令的方法,今天在看type命令的时候,发现man手册里面就有

    执行man type,有一段就告诉你内置命令都有啥了

    BASH BUILTIN COMMANDS
    Unless otherwise noted, each builtin command documented in this section as
    accepting options preceded by - accepts -- to signify the end of the
    options. The :, true, false, and test builtins do not accept options and
    do not treat -- specially. The exit, logout, break, continue, let, and
    shift builtins accept and process arguments beginning with - without
    requiring --. Other builtins that accept arguments but are not specified
    as accepting options interpret arguments beginning with - as invalid
    options and require -- to prevent this interpretation.

     

     

  • 相关阅读:
    最短路径问题/Spfa
    cddiv/数组维护
    cfdiv2/c/找规律
    Codeforces Round #343 (Div. 2)【A,B水题】
    POJ 2135_Farm Tour
    POJ 3469_Dual Core CPU
    POJ 3469_Dual Core CPU
    POJ 3281_Dining
    POJ 3281_Dining
    POJ 3041_Asteroids
  • 原文地址:https://www.cnblogs.com/kelamoyujuzhen/p/9830516.html
Copyright © 2011-2022 走看看