001、dir列出指定目錄下的所有檔案
[root@localhost test]# ls 1.txt 3.txt 5.txt 8.txt a.txt result.txt [root@localhost test]# dir ## 列出當前目錄下的所有檔案 1.txt 3.txt 5.txt 8.txt a.txt result.txt [root@localhost test]# dir /home ## 列出指定目錄下的所有檔案 liujiaxin01 pileupCaller-Linux test
。
002、dirname會返回指定目錄的上一級目錄
[root@localhost test]# ls 1.txt 3.txt 5.txt 8.txt a.txt result.txt [root@localhost test]# pwd /home/test [root@localhost test]# dirname /home/test/ /home [root@localhost test]# dirname /home/ / [root@localhost test]# dirname /home/test/xxx/yyy /home/test/xxx
。