说明

  dirname命令主要用于显示文件路径中目录部分

格式:

  dirname [选项] [name]

示例

  1. [root@localhost test]# dirname /etc/php7.2.5/php.ini
  2. /etc/php7.2.5
  3. [root@localhost test]# dirname dir1/ #如果这里是相对路径,那么显示则会是.,表示当前目录
  4. .