태그 보관물: clipboard

clipboard

Ubuntu 명령 줄에서 잘라 내기 및 복사 잘라내려면 어떻게해야합니까? 나는 명령 줄을 의미합니다!

디렉토리에서 다른 디렉토리로 파일을 복사하거나 잘라내려면 어떻게해야합니까?

나는 명령 줄을 의미합니다!



답변

단순 : 터미널 입력

복사

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


답변

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

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$


답변

여기 내 견해가 있습니다. 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


답변