lists

to export your requirements as a txt.

1
2
3
4
5
6
7
8
9
10
pacman -Qqe > pacman_installed.txt
yay -Qqe > yay_installed.txt

//reusme
// sudo pacman -S --needed - < pacman_installed.txt
// yay -S --needed - < yay_installed.txt

pip3 freeze > pip_installed.txt
// resume : pip3 install -r pip_installed.txt

command lines homepage

click here to come back to command line homepage.