Chinaunix首页 | 论坛 | 博客
  • 博客访问: 373583
  • 博文数量: 49
  • 博客积分: 3380
  • 博客等级: 中校
  • 技术积分: 610
  • 用 户 组: 普通用户
  • 注册时间: 2009-03-10 19:56
文章分类

全部博文(49)

文章存档

2011年(18)

2010年(1)

2009年(30)

我的朋友

分类: LINUX

2009-03-10 20:13:11

#!/bin/sh
do_help()
{
    echo "syntax:"
    echo "split "
}
orig_file=$1
split_num=${2:-2}
dest_path=${3:-.}
if ! ( [ -f "$orig_file" ] &&
[ -r "$orig_file" ] && [ -s "$orig_file" ] ); then
    echo "file $orig_file is invalid."
    do_help
    exit 1
fi
if ! [ $split_num -gt 1 ]; then
    echo "split_num is invalid."
    do_help
    exit 1
fi
if ! ( [ -d $dest_path ] && [ -x $dest_path ] );then
    echo "dest_path is invalid."
    do_help
    exit 1
fi
size=$(ls -l $orig_file | awk '{print $5}')
split_size_avr=$(($size/$split_num))
bs=1
if [ $size -gt $((1024*1024)) ]; then
    bs=1024
    split_size_avr=$(($split_size_avr/1024))
fi
for i in $(seq $split_num);do
    if [ $i -eq 1 ]; then
        dd if=$orig_file \
of=$dest_path/${orig_file}.$i bs=$bs count=$split_size_avr
    elif [ $i -eq  $split_num ];then
        dd if=$orig_file \
of=$dest_path/${orig_file}.$i bs=$bs \
skip=$(($split_size_avr*$(($i-1)))) \
count=$(( $size - $(($split_size_avr*$(($i-1)))) ))
    else
        dd if=$orig_file \
of=$dest_path/${orig_file}.$i bs=$bs \
skip=$(($split_size_avr*$(($i-1)))) \
count=$split_size_avr
    fi
done
命令格式:
./split filename N dest_path
合并N个小文件为一个大文件:
代码:
cat $(ls |grep -E 'filename\.') > filename

 原文地址
阅读(1110) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:shell菜单

给主人留下些什么吧!~~