nix-config/sh/092-archives

18 lines
342 B
Plaintext
Raw Normal View History

2018-08-31 21:39:35 +02:00
#!/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