bs_nix/setup1_apt.sh

11 lines
257 B
Bash
Raw Normal View History

2018-12-16 08:48:50 +00:00
#!/bin/bash
# create apt snapshot and script for manually installed packages
echo "Creating APT snapshot..."
mkdir ~/.pkgsrc
apt-mark showmanual > ~/.pkgsrc/pkgs_org
echo "Creating APT script..."
cp ./_show_pkgs ~/show_pkgs
chmod +x ~/show_pkgs