Cp
如何在不立即從終端粘貼的情況下複製文件?
使用命令“cp”時,我需要知道我想將文件粘貼到哪裡。通常,我必須複製文件但不必立即粘貼,或者有時我不知道必須將其粘貼到哪裡。我希望可以選擇導航到要粘貼文件的目錄,然後執行此操作。有沒有執行此操作的命令?
基本上,我想要這樣的東西-
cp file.txt cd .. cd RandomDirectory paste
這可以在 GUI 中輕鬆完成 - Ctrl+C 文件,導航到所需目錄,然後 Ctrl+V
您可以嘗試類似這個項目的 clipboard-files。它具有以下命令:
ccopy
、ccut
、cpaste
和。cshow``cclear
您可以在
README.md
文件中找到此範例:$ ccopy file1.txt file2.jpg 2 item(s) copied to clipboard $ cshow Operation: copy /home/lars/temp/file1.txt /home/lars/temp/file2.jpg $ cd folder/ $ cpaste Copying the following items(s) to current dir: /home/lars/temp/file1.txt /home/lars/temp/file2.jpg $ ccut * 2 item(s) cut to clipboard $ cd .. $ cpaste Moving the following items(s) to current dir: /home/lars/temp/folder/file1.txt /home/lars/temp/folder/file2.jpg