date -s [dateString] #设置系统当前时间 cal [options] #查看日历:默认显示本月日历 cal 2020 #显示2020年日历 4.5 搜索查找类 find [range] [options] name #从指定范围向下递归遍历将满足条件的文件或目录显示在终端 -name #按照指定的文件名查找 -user #查找属于自定用户的所有文件 -size #按照指定的文件...
find dir[ ...] -uid UID find dir[ ...] -gid GID find dir[ ...] -user USERNAME find dir[ ...] -group GROUPNAME find dir[ ...] -nouser find dir[ ...] -nogroup -uid UID:列出文件的所有者ID为UID的文件。 -gid GID:列出文件的用户组ID为GID的文件。 -user USERNAME:列出文件的...
find /sbin -perm +700 | ls -l# 这个命令是错误,因为标准输入不能作为ls的参数find /sbin -perm +700 | xargs ls -l# 这样才是正确的#命令格式xargs [OPTIONS] [COMMAND] md5sum 命令 md5sum 用于计算和校验文件的MD5值。md5sum 常常被用来验证网络文件传输的完整性,防止文件被人篡改。在日常工作当中,我...
mkdir -p a/long/directory/path Multiple variable assignments from command output in BASH bash命令输出的结果给多个变量赋值 read day month year <<< $(date +'%d %m %y') Create a pdf version of a manpage 创建一个PDF man -t strcpy | ps2pdf - filename.pdf Show apps that use internet con...
datedate命令用来输出当前的系统时间,可以使用-s参数指定输出格式。但设置时间涉及到设置硬件,所以有另外一个命令叫做hwclock。 xargsxargs读取输入源,然后逐行处理。这个命令非常有用。举个栗子,删除目录中的所有class文件。 find.|grep.class$|xargs rm-rvf ...
root@ubuntu:~# <Any command with output> | grep "<string to find>" Copy This was a simple demonstration of the command. Learn more about thegrep command. Jump back to commands list ↑ When outputting large files, theheadandtailcommands come in handy. These commands display the beginning ...
Run the commanddnf install logwatch -yto install thelogwatchpackages. Copy dnfinstalllogwatch-y Use thefindcommand to list alllogwatchfiles. Copy find /-name"*logwatch*" The output lists several files: The main configuration file is/usr/share/logwatch/default.conf/logwatch.conf. ...
For example, Ubuntu’s ifup command reads /etc/network/interfaces and Fedora uses /etc/sysconfig/networkinterfaces/ ifcfg-lo. You can often find the loopback device configuration by digging around in /etc with grep lo回环接口通常是在启动时脚本中唯一会看到静态网络配置的地方。 例如,Ubuntu的ifup...
START= starting time or date of the process 流程的开始时间或日期 TIME= cumulative CPU time 累计CPU时间 COMMAND= command with all its arguments 带有所有参数的命令 See theps man pagefor more info. Difference between VSZ vs RSS memory usage ...
《The Command Line Book》学习笔记 书籍地址 Learning The Shell 初试Shell 命令行打开快捷键:<C-Alt-T> me@ubuntu16.04:~$ 以上格式含义为:用户名@电脑名:当前文件夹和$。 如果不是$,而是以 “#”结尾表示为超级用户权限。 导航: <Up>:上一个命令 ...