由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 有谁对bash script熟悉的,请教一个问题
相关主题
bourne shell 问题请教一下关于各大公司是怎么做测试的
怎么才能在Unix里连续跑10个c写的程序remove a module from cvs
简单的perl问题问一个link的问题
Node已经成为enterprise的go-to technology了Linux shell: xterm -e "commands" problem
Script question[合集] 问个PHP+apache的问题 (转载)
弱问bash script, 关于IFS问题请教MS的高手一个shell的问题
sh question: get the file name of a script when started from a dot commandLinux GNU C, readlink问题
为什么需要node.js waterfall,而不是直接call python scriptMakefile的问题
相关话题的讨论汇总
话题: tar话题: script话题: bash话题: 文件话题: source
进入Programming版参与讨论
1 (共1页)
d*****u
发帖数: 17243
1
我现在有个script是把所有的指定文件打包成tar
( cd "${SOURCE_DIR}" && find . -type f -name "${FILE_GLOB}" ) |
tar -C "${SOURCE_DIR}" --remove-files --files-from - -cf "${TARBALL}"
我现在如果想让第1~100个文件是一个tar文件,101~200个是另外一个tar文件。。。
文件名怎么都无所谓
如果只用bash script容易弄吗?
主要不想嵌入其他的code
p****o
发帖数: 1340
2
xargs -n100

【在 d*****u 的大作中提到】
: 我现在有个script是把所有的指定文件打包成tar
: ( cd "${SOURCE_DIR}" && find . -type f -name "${FILE_GLOB}" ) |
: tar -C "${SOURCE_DIR}" --remove-files --files-from - -cf "${TARBALL}"
: 我现在如果想让第1~100个文件是一个tar文件,101~200个是另外一个tar文件。。。
: 文件名怎么都无所谓
: 如果只用bash script容易弄吗?
: 主要不想嵌入其他的code

d*****u
发帖数: 17243
3
thanks, very helpful

【在 p****o 的大作中提到】
: xargs -n100
1 (共1页)
进入Programming版参与讨论
相关主题
Makefile的问题Script question
cmake coeblock求教弱问bash script, 关于IFS问题
How to convert zipped text files to a ePubsh question: get the file name of a script when started from a dot command
今天第一次在windows上倒腾vert.x为什么需要node.js waterfall,而不是直接call python script
bourne shell 问题请教一下关于各大公司是怎么做测试的
怎么才能在Unix里连续跑10个c写的程序remove a module from cvs
简单的perl问题问一个link的问题
Node已经成为enterprise的go-to technology了Linux shell: xterm -e "commands" problem
相关话题的讨论汇总
话题: tar话题: script话题: bash话题: 文件话题: source