diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-11 02:01:06 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-11 02:01:06 +0200 |
commit | 05628b2c3e720aee60e0b3670c691b9a48f4c1ac (patch) | |
tree | c782283e6534aaa792b7d0565a271a08e919eca7 /lib/_ak_fs | |
parent | 45e8aacd266490b84619be0f38c30bad1b475107 (diff) | |
download | arching-kaos-tools-05628b2c3e720aee60e0b3670c691b9a48f4c1ac.tar.gz arching-kaos-tools-05628b2c3e720aee60e0b3670c691b9a48f4c1ac.tar.bz2 arching-kaos-tools-05628b2c3e720aee60e0b3670c691b9a48f4c1ac.zip |
Compatibility with FreeBSD on split program
Diffstat (limited to 'lib/_ak_fs')
-rwxr-xr-x | lib/_ak_fs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -166,7 +166,7 @@ _ak_fs_import(){ _ak_log_info "Gonna split in $FACTOR size" sleep 3 # We split the file into 4*1024 bytes and output the chunks into TECHDIR - split -a 50 -b $FACTOR --additional-suffix ".chk" -d "$FILE" "$TECHDIR/$(basename "$FILE")-" + split -a 13 -b $FACTOR -d "$FILE" "$TECHDIR/chunk-" fi _ak_log_info "File done splitting" |