Ubuntu 명령 줄에서 잘라 내기 및 복사


답변:


10

단순 : 터미널 입력

복사

cp /PATH1/file [file2 file3 ...] /PATH2/[newfilename or noting to use the same name]

에 대한 자세한 정보를 원하시면 cp사용man cp


잘라 내기 (이동 및 이름 바꾸기)

mv /PATH1/file /PATH2/[newfilename or noting to use the same name]

에 대한 자세한 정보를 원하시면 mv사용man mv


감사합니다! 하지만 난 그냥 사용해야 mv하고 cp? copy그리고 move작동하지 않았다?
Milad Sobhkhiz

1
당신은에 따라 사용, 복사 너무 이동할 수 있습니다 @MiladSobhkhiz 당신이 .... 사용하는 운영 체제
hingev을

1
그는 우분투 사용했다
안와르

1
올바른 명령은 mv 및 cp입니다. 예를 들어, 원하는 경우 별명을 작성하고 복사가 cp에 응답하도록 할 수 있습니다.
LnxSlck

6

안녕 여기 우리는 실제적인 예와 함께 간다 :

1. Copy 

    raja@badfox:~/Folder$ mkdir copy
    raja@badfox:~/Folder$ mkdir move
    raja@badfox:~/Folder$ touch file1 file2 file3 file4
    raja@badfox:~/Folder$ cp file1 copy
    raja@badfox:~/Folder$ ls copy
    file1

2. Move


    raja@badfox:~/Folder$ ls
    copy  file1  file2  file3  file4  move
    raja@badfox:~/Folder$ mv file2 move
    raja@badfox:~/Folder$ ls move
    file2
    raja@badfox:~/Folder$ ls
    copy  file1  file3  file4  move


3. Rename

    raja@badfox:~/Folder$ mv file3 file2
    raja@badfox:~/Folder$ ls
    copy  file1  file2  file4  move
    raja@badfox:~/Folder$ 

0

여기 내 견해가 있습니다. dir2에서 file1을 dir1에서 file2로 이동하려고하므로 다음과 같습니다. mv /PATH/TO/FILE1/ /PATH/TO/FILE2/ 실제 예 : ~ / Documents $ls text.txt
cd .. cd Desktop ls
cd .. mv ~/Documents/text.txt/ ~/Desktop/text.txt cd Desktop ls
text.txt

그것이 도움이되고 너무 복잡하지 않기를 바랍니다 : D

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.