Installing
How to install this script.
Installing this script is easy. To install it, follow these steps, assuming that you have either curl or wget installed on your Linux system.
Local installation
If you want to install this script to your local home directory, you'll need to execute one of the below commands, depending on what you have:
$ curl -fsSL https://raw.githubusercontent.com/Aptivi/uprepos/main/uprepos > $HOME/.local/bin/uprepos
$ wget -O$HOME/.local/bin/uprepos https://raw.githubusercontent.com/Aptivi/uprepos/main/upreposAfter that, you'll need to execute the below command to ensure that the script is executable:
$ chmod +x $HOME/.local/bin/upreposSystem-wide installation
If you want to make this script available to all users on your system, you'll need to execute one of the below commands, depending on what you have:
$ curl -fsSL https://raw.githubusercontent.com/Aptivi/uprepos/main/uprepos | sudo tee /usr/local/bin/uprepos
$ sudo wget -O/usr/local/bin/uprepos https://raw.githubusercontent.com/Aptivi/uprepos/main/upreposAfter that, you'll need to execute the below command to ensure that the script is executable:
$ sudo chmod +x /usr/local/bin/upreposLast updated