hello world
我在我的主目录中创建了一个名为的文本文件。通过 shell,我尝试使用命令删除它rm
。但是,当我执行rm hello world
shell 时,它认为我正在尝试删除两个单独的文件,一个名为“hello”,另一个名为“world”。我该如何正确地做到这一点?
答案1
你可以引用它:
rm "hello world"
或逃离空间:
rm hello\ world
答案2
有时使用通配符以交互方式删除更容易:
$ rm -i hell*
hello world
我在我的主目录中创建了一个名为的文本文件。通过 shell,我尝试使用命令删除它rm
。但是,当我执行rm hello world
shell 时,它认为我正在尝试删除两个单独的文件,一个名为“hello”,另一个名为“world”。我该如何正确地做到这一点?
你可以引用它:
rm "hello world"
或逃离空间:
rm hello\ world
有时使用通配符以交互方式删除更容易:
$ rm -i hell*