久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

linux內(nèi)置命令

 風(fēng)雨孤劍客 2023-08-12 發(fā)布于新疆

查看所有內(nèi)置命令

方法1:help

方法2:compgen -b

compgen:顯示所有可用的命令、別名和函數(shù)

-c 列出所有可用的命令

-a 列出可用的所有bash shell別名

-b 顯示所有bash內(nèi)置插件

-k 顯示所有bash關(guān)鍵字

-A 顯示所有bash函數(shù)

方法1:

可以配合管道符分頁查看:

help | less 
help | more

方法2:

geoff@Geoff:~$ compgen -b
.
:
[
alias
bg
bind
break
builtin
caller
cd
command
compgen
complete
compopt
continue
declare
dirs
disown
echo
enable
eval
exec
exit
......

查看內(nèi)置命令詳情

語法:help 命令名稱

geoff@Geoff:~$ help exit
exit: exit [n]
    Exit the shell.

    Exits the shell with a status of N.  If N is omitted, the exit status
    is that of the last command executed.

判斷命令類型

type 命令名

或:

command -V 命令名

geoff@Geoff:~$ type echo
echo is a shell builtin

geoff@Geoff:~$ command -V echo
echo is a shell builtin



    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多