GNU Coreutils

Linux中split大文件分割和cat合并文件

扶醉桌前 提交于 2021-02-19 10:44:54
当需要将较大的数据上传到服务器,或从服务器下载较大的日志文件时,往往会因为网络或其它原因而导致传输中断而不得不重新传输。这种情况下,可以先将大文件分割成小文件后分批传输,传完后再合并文件。 1.分割 -- split命令 可以指定按行数分割和按字节大小分割两种模式。 (1) 按行数分割 $ split -l 300 large_file.txt new_file_prefix 加上-d,使用数字后缀;加上--verbose,显示分割进度: $ split -l50000 -d large_file.txt part_ --verbose (2) 按字节大小分割 $ split -b 10m large_file.log new_file_prefix 2.合并 -- cat命令 $ cat part_* > merge_file.txt [注] split命令语法: split --h Usage: split [OPTION]... [FILE [PREFIX]] Output pieces of FILE to PREFIXaa, PREFIXab, ...; default size is 1000 lines, and default PREFIX is 'x'. With no FILE, or when FILE is -, read standard input.

Linux 查看磁盘使用情况

扶醉桌前 提交于 2019-12-06 06:47:10
通过 DU/DF 可以查看磁盘使用情况 DU 通过搜索文件来计算每个文件的大小然后累加,du能看到的文件只是一些当前存在的,没有被删除的。他计算的大小就是当前他认为存在的所有文件大小的累加和。 用法:du [选项]... [文件]...  或:du [选项]... --files0-from=F Summarize disk usage of the set of FILEs, recursively for directories. 必选参数对长短选项同时适用。 -0, --null end each output line with NUL, not newline -a, --all write counts for all files, not just directories --apparent-size print apparent sizes, rather than disk usage; although the apparent size is usually smaller, it may be larger due to holes in ('sparse') files, internal fragmentation, indirect blocks, and the like -B, --block-size=SIZE scale sizes by

Linux 查看磁盘使用情况

一笑奈何 提交于 2019-12-03 01:43:53
通过 DU/DF 可以查看磁盘使用情况 DU 通过搜索文件来计算每个文件的大小然后累加,du能看到的文件只是一些当前存在的,没有被删除的。他计算的大小就是当前他认为存在的所有文件大小的累加和。 用法:du [选项]... [文件]...  或:du [选项]... --files0-from=F Summarize disk usage of the set of FILEs, recursively for directories. 必选参数对长短选项同时适用。 -0, --null end each output line with NUL, not newline -a, --all write counts for all files, not just directories --apparent-size print apparent sizes, rather than disk usage; although the apparent size is usually smaller, it may be larger due to holes in ('sparse') files, internal fragmentation, indirect blocks, and the like -B, --block-size=SIZE scale sizes by

linux shell里面nohup的用法

心不动则不痛 提交于 2019-12-02 16:05:42
百度了很多,但都不是官方的,按照linux命令中,一切可以--help的思想 我们就来 --help下。 其实linux命令不难学 只要会了两个基本的命令参数就可以开搞 man 男人 help 帮助 ls --help or man ls mkdir --help or man mkdir ##英文的(nohup (GNU coreutils) 5.97) nohup --help 用法:nohup 命令 [参数]... 或:nohup 选项 Run COMMAND, ignoring hangup signals. --help 显示此帮助信息并退出 --version 输出版本信息并退出 NOTE: your shell may have its own version of nohup, which usually supersedes the version described here. Please refer to your shell's documentation for details about the options it supports. 请向 bug-coreutils@gnu.org 报告错误。 ##中文的nohup (GNU coreutils) 8.4 nohup --help 用法:nohup 命令 [参数]...  或:nohup 选项