tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

create_archives.sh (302B)


      1 #!/bin/bash
      2 # Script to auto-generate the different archive types under the archives directory.
      3 
      4 cd archives
      5 
      6 rm archive.*
      7 
      8 tar cf archive.tar -C reference .
      9 gzip -fk archive.tar >archive.tar.gz
     10 bzip2 -fk archive.tar >archive.tar.bz2
     11 xz -zk archive.tar
     12 cd reference && zip ../archive.zip -r * && cd ..