mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 03:34:46 +01:00
18 lines
342 B
Bash
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
|