Linux教程

linux中查看命令的用途(help)

本文主要是介绍linux中查看命令的用途(help),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考https://blog.csdn.net/sinat_35855737/article/details/104510089

首先,查看该命令是内部命令还是外部命令。
输入type 命令字

“cat is /usr/bin/cat”,有路径显示,说明cat是外部命令。

[root@localhost ~]# type cat
cat is /usr/bin/cat

"echo is a shell builtin"说明该命令是内部命令.

[root@localhost ~]# type echo
echo is a shell builtin

 

 

外部命令,查看帮助信息输入 “ [命令字] --help”

cat --help

内部命令,查看帮助信息输入 “help [命令字] ”

help echo

  

 

这篇关于linux中查看命令的用途(help)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!