a/ using LHA under linux :
for i in */; do lha c "${i%/}.lha" "$i" "${i%/}.info" ; done
b/ using tar
for i in */; do tar -cvf "${i%/}.tar" "$i" "${i%/}.info" ; done
both of them will create individually archives
No comments:
Post a Comment