我正在尝试从学生帐户复制一个文件到它的 gpg,但是当我尝试输入路径时,我得到的只是这个结果,我已经尝试了一切,这个实验室将于明天到期。
cp / home/Instructor/instructor.pub/home/student/Documents/instructor.pub
我得到的结果是cp: omitting directory
/'`
答案1
第一个字符后面的空格位置不对/
,导致出现cp: omitting directory /
错误消息。此外,/home/Instructor/instructor.pub
和/home/student/Documents/instructor.pub
应该用空格字符分隔,以创建两个单独的字符串,每个字符串对应一个instructor.pub位置。
正确的命令应该如下。
cp /home/Instructor/instructor.pub /home/student/Documents/instructor.pub