-
-rw-rw-r-- 1(代表硬链接数) 第一个“-”是文件类型,剩下9个的分为三组,分别是owner,group,world 添加写权限:chmod +w change file mode(改变文件模式)查看全部
-
locate从数据库中进行搜索。updatedb可以将文件系统中的内容更新到db中。 所以locate速度快,但是不能满足实时性的需求。查看全部
-
bg -> 显示后台 fg -> 显示前台查看全部
-
be careful of whitespace!!! in script. ssh -t xxx@ip 'command' //execute program in server查看全部
-
the end descriptor of command 'find' is ';' and the '{}' represents the content which command 'find' searched.查看全部
-
there are three files open constantly : stdin(0), stdout(1) and stderr(2) input data will be saved into stdin while stdout and stderr will show on screen. redirect error into a file 2 > file redirect stdin program < stdin查看全部
-
have executing permission of a directory, then you enter this directory.查看全部
-
only have the write permission of a directory, then do create/delete/rename file inside.查看全部
-
locate only find file in database, if you create a new, it cannot find it. however, if you really want to find it. you can do it like this. updatedb && locate newfile updatedb run everyday, but you can run it manually查看全部
-
常用的shell功能查看全部
-
locate找不到系统当天创建的文件查看全部
-
ctr+alt+F1 字符控制台 ctr+alt+F7 图形界面控制台查看全部
-
copy $cp file1 file2 $cp -r dir1 dir2查看全部
-
权限党,^-^查看全部
-
查找命令: locate 全局查找,非全盘搜索,根据已有的数据库搜索,而数据库更新时间为1天,因而不能查找新建的文件,可利用系统权限执行updatedb命令解决该问题 find 当前目录内查找,支持更多参数辅助 grep 非常常用的查找命令 细解: locate --regex *** 支持正则查询 find . 查找当前目录内的全部内容 find . | grep .txt 查找当前目录内所有txt文件 find . -type f 查找文件 find . -type d 查找路径 find . -type f -exec command ';'查找并执行command命令查看全部
举报
0/150
提交
取消