可以使用find命令,如find /path/to/directory -type f -size +1G来查找大于1G的文件。
is N or fewer levels below the command line argument; --max-depth=0 is the same as --summarize --time show time of the last modification of any file in the directory, or any of its subdirectories --time=WORD show time as WORD instead of modification time: atime, access, use, ctime...
mkdir new_directory 创建名为new_directory的目录。 代码语言:javascript 复制 mkdir-p/path/to/directory 代码语言:javascript 复制 mkdir/tmp/tm/wljslmz 创建指定路径的目录,如果路径中的目录不存在,则会一并创建。 5. mv - 移动或重命名文件 mv命令用于移动文件或重命名文件。 代码语言:javascript 复制 mv f...
cat file* | command > result.txt:合并多个文件并通过命令(如sed,grep,awk等)处理再将结果写入新文件。 grep 命令示例 grep Aug /var/log/messages:在指定文件中查找包含关键词Aug的行。 grep ^Aug /var/log/messages:查找以Aug开头的行。 grep [0-9] /var/log/messages:查找包含数字的行。
切换目录,是changedirectory的缩写 cd/ 进入指定的目录 cd~ 进入home目录 cd- 进入上一次工作路径 cd.. 切换到上一级目录 3、Linux指令-pwd 该命令用于查看当前工作目录的路径, print work directory的缩写 pwd查看当前目录路径 pwd-P 查看软连接的实际路径 ...
du apparent size By default, thedu command showsthe disk space used by the directory or file`. To findthe apparent size of a directory, use the--apparent-size option. The “apparent size” of a file ishow much...
[root@CentOS7-1 ~]# lsof -i udp COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME chronyd 629 chrony 5u IPv4 16952 0t0 UDP localhost:323 chronyd 629 chrony 6u IPv6 16953 0t0 UDP localhost:323 netdata 18325 netdata 36u IPv6 114297 0t0 UDP localhost:8125 netdata 18325 netdata 37u...
alias short='long-command':为长命令创建别名。 unalias short:删除别名。 echo:显示字符串或变量。 echo "Hello, World!":显示文本字符串。 echo $PATH:显示PATH环境变量的值。 date:显示或设置系统日期和时间。 date:显示当前系统日期和时间。 date +"%Y-%m-%d %H:%M:%S":以指定格式显示日期和时间。
基本上 vi/vim 共分为三种模式,分别是命令模式(Command mode),输入模式(Insert mode)和底线命令模式(Last line mode)。 这三种模式的作用分别是: vim工作模式 命令模式:进入 vim 默认的模式 编辑模式:按 i 进入的 a i o 也可以进入 底行模式: 按下:(冒号)之后进入到的模式 ...
Option 1: cd to the desired directory In the first option you cd to the directory you want to see the size of, then run the ls command from that directory. This is not a smart way to do this at all, but I thought I better show it, because I've certainly seen people do it. ...