命令格式: find dir -name filename command 例子: find . -name hello -print 寻找目前目录及所有的子目录内叫 hello的文档. find . -ctime +7 -print 找出七天内未被更动的文档 find . -size +2000m -print 找出大小超过2000 bytes的文档 find /tmp -user b1234567 -print 在/tmp下属於b1234567的文...
命令格式: find dir -name filename command 例子: find . -name hello -print 寻找目前目录及所有的子目录内叫 hello的文档. find . -ctime +7 -print 找出七天内未被更动的文档 find . -size +2000m -print 找出大小超过2000 bytes的文档 find /tmp -user b1234567 -print 在/tmp下属於b1234567的文...
执行格式:whereis command ( 显示命令之路径。) 执行格式:which command ( 显示命令之路径,及使用者所定义之别名。) 执行格式:whatis command ( 显示命令功能之摘要。) 执行格式:find search-path -name filename -print( 搜寻指定路径下,某文件之路径 。) Example : %find / -name file1 -print ( 自根目...
命令格式: find dir -name filename command find.-name hello-print寻找目前目录及所有的子目录内叫hello的文档.find.-ctime+7-print找出七天内未被更动的文档find.-size+2000m-print找出大小超过2000bytes的文档find/tmp-user b1234567-print在/tmp下属於b1234567的文档find.-name'*.c'-exec rm{}删除所有的...
2执行格式:command > filename将command执行时,萤幕上所产生的任何讯息,写入指定的filename中。 Example: %cc file1.c > error将编译file1.c文件时,所产生之任何讯息,写入文件error中。 2执行格式:command >> filename将command执行结果,附加(append)到指定的filename中。
ls –R 显示出目录下,以及其所有子目录之文件名。( recursive listing ) 2.2 目录之缩写: ~ 使用者 login 时的 working directory ( 起始目录 ) ~username 指定某位 user 的 working directory ( 起始目录 ) .. 目前的工作目录 ( current working directory ) ...
22. find Command which cab be used to find strings and values in a text document. 23. :wq Key writes save the contents of the file and quits the 25.The UNIX os was the brainchild of Ken and Dennis Ritchir 26.grep stands for :Global Regual Expression Print. 27.Tail Command is used...
执行格式:which command ( 显示命令之路径,及使用者所定义之别名。) 执行格式:whatis command ( 显示命令功能之摘要。) 执行格式:find search-path -name filename -print ( 搜寻指定路径下,某文件之路径 。) Example : %find / -name file1 -print ( 自根目录下,寻找文件名为 file1 之路径。. ...
执行格式:whatis command (显示命令功能之摘要。) 执行格式:find search-path -name filename -print (搜寻指定路径下,某文件之路径。) Example: %find / -name file1 -print (自根目录下,寻找档名为file1之路径。. 比较文件或目录之内容 执行格式:diff [-r] name1 name2 ( name1 name2可同时为档名,...
(recursive copy) 复制整个目录. 若目录 dir2 存在,则将目录dir1,及其所有文档和子目录, 复制到目录 dir2 下,新目录名称为dir1.若目录dir2不存在, 则将dir1,及其所有文档和子目录,复制为目录 dir2. 10.mv 文件移动 命令格式: mv source destination 例子: mv file1 file2 将文档 file1,更改档名为 ...