[下一页][首页][上一页]

我如何执行 rm、cp 与 mv 时,须要我的许可?

SYNOPSIS
     rm [-i] file ...
     cp [-i] source_file target_file
     mv [-i] source target
范例:
$ ls
N3tes           hello_world     mydir
dir             hello_world.c   notes
$ rm -i * ..."*" 表示所有的档案...
remove N3tes? y
remove dir? y
remove hello_world? y 
remove hello_world.c? ...按下 Enter 使用内定值 "n"...
rm: mydir: is a directory
remove notes?
$ ls
hello_world     hello_world.c   mydir           notes
$ _
[上一页][首页][下一页]