nix-config/sh/092-archives
2018-08-31 15:39:35 -04:00

18 lines
342 B
Bash

#!/bin/sh
#
# The `zip` package lets us zip files from the shell. The `unzip`,
# `p7zip`, and `unrar` packages let us uncompress zip files, 7z
# files, and rar files respectfully.
#
# https://wiki.archlinux.org/index.php/Archiving_and_compression
set -xe
sudo pacman -S zip
sudo pacman -S unzip
sudo pacman -S p7zip
sudo pacman -S unrar