Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Jul 17, 2024
1 parent 9e23e3c commit d27a566
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
cat-once --file test.file --test-create-ascii-file-size=$file_size
sha1sum test.file > test-in.file.sha1
cargo run --release -- --file test.file --chunk-size $chunk_size > test-out.file
if [ ! -e "test.file" ]; then
echo "File does not exist."
if [ -e "test.file" ]; then
echo "File exist but it should not"
exit 1
fi
mv test-out.file test.file
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ Cat and truncate file at the same time, by recopying it to itself.
# Sample usage

# Unpack files from zst tar to output directory
cat-once --file test2.tar.zst --truncate 33 | tar -I zstd -xf - -C output
cat-once --file test2.tar.zst --truncate 33 | tar -I zstd -xf - -C output


cat-once --dry-run --file heimdall-mainnet-snapshot-bulk-2024-02-01.tar.zst -c 1010765k | tar -I zstd -xf - -C output

0 comments on commit d27a566

Please sign in to comment.