# **Сжатие:** ```shell tar cf - -P | pv -s $(du -sb | awk '{print $1}') | gzip > ``` Где: - `` is the root-mounted (i.e. starts with /) path to the files - `` is the output tarball to create # **Распаковка:** ```shell pv | tar -xvzf - -C ``` Где: - `` is the path to the tarball to extract - `` is the directory to extract the tarball to