cp, 후행 슬래시, 동일한 디렉토리에 복사 또는 다른 디렉토리에 복사
한 디렉터리를 다른 디렉터리로 복사하려면 첫 번째 디렉터리에 슬래시가 없어야 합니다. # example 1 # this command will copy dir1 to dir2 # (dir2 is preexisting) cp -Rip dir1 dir2/ 그렇지 않으면 명령은 디렉터리 자체가 아닌 디렉터리 내용을 복사합니다. # example 2 # this command will copy dir1 contents to dir2 # (dir2 is preexisting) cp -Rip dir1/ dir...