Skip to content
On this page

bash脚本_type命令


标签:linux/bash脚本  
  • type 命令
  • 使用 bash 脚本的时候,可能会分不清解析器指令还是外部命令行工具,可以使用 type 命令
bash
 type -a type
type is a shell builtin
bash
 type -a echo
echo is a shell builtin
echo is /bin/echo

Last updated: