goutils/cmd/cruntar
Kyle Isom c1f06604e3 fix dependency issues. 2023-05-04 23:45:08 -07:00
..
BUILD.bazel fix dependency issues. 2023-05-04 23:45:08 -07:00
README Add cruntar - untar for ChromeOS. 2017-11-15 17:37:54 -08:00
main.go Cleaning up the codebase. 2023-05-04 23:22:35 -07:00

README

ChromeOS untar

This is a tool that is intended to support untarring on SquashFS file
systems. In particular, every time it encounters a hard link, it
will just create a copy of the file.

Usage: cruntar [-jmvpz] archive [dest]

Flags:
        -a      Shortcut for -m -p: preserve owners and file mode.
        -j      The archive is compressed with bzip2.
        -m      Preserve file modes.
        -p      Preserve ownership.
        -v      Print the name of each file as it is being processed.
        -z      The archive is compressed with gzip.

I wrote this after running into problems with untarring the
gcc-arm-eabi-none toolchain. The shared storage in Termux under
ChromeOS doesn't support hard links, so I opted to just make a copy
rather than dealing with links and whatnot.