取消
搜索历史

    10个你从未用过的Linux命令

    来源:51CTO 2011-08-28 00:00Linux教程

    split是你的命令,下面是将250MB文件分解为2M的块儿,所有开始于LF_前缀。

    # ls -lh largefile

    -rw-r--r-- 1 root root 251M Feb 19 10:27 largefile

    # split -b 2m largefile LF_

    # ls -lh LF_* | head -n 5

    -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_aa

    -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ab

    -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ac

    -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ad

    -rw-r--r-- 1 root root 2.0M Feb 19 10:29 LF_ae

    # ls -lh LF_* | wc -l

    126

    (文章为作者独立观点,不代表存储网立场,版权疑问请联系客服。)
    关于我们| 隐私条例| 版权申明| 联系我们

    2018-2022 Copyright © Stor.com.cn