아래의 예를 보면 쉽게 이해 하실 수 있습니다.
ex)
[root@op /]# mkdir -p /home2/test/test/test
[root@op /]# cd /home2/test
[root@op test]# ls -al
합계 12
drwxr-xr-x 3 root root 4096 10월 30 02:48 .
drwxr-xr-x 20 root root 4096 10월 30 02:48 ..
drwxr-xr-x 3 root root 4096 10월 30 02:48 test
[root@op test]# cd test
[root@op test]# ls
test
디렉토리를 만들때 위와 같이 p옵션을 서브디렉토리내에
원하는 디렉토리를 한번에 만들 수 있습니다.
ex)
[root@op /]# mkdir -p /home2/test/test/test
[root@op /]# cd /home2/test
[root@op test]# ls -al
합계 12
drwxr-xr-x 3 root root 4096 10월 30 02:48 .
drwxr-xr-x 20 root root 4096 10월 30 02:48 ..
drwxr-xr-x 3 root root 4096 10월 30 02:48 test
[root@op test]# cd test
[root@op test]# ls
test
디렉토리를 만들때 위와 같이 p옵션을 서브디렉토리내에
원하는 디렉토리를 한번에 만들 수 있습니다.