gitlabEdit

compact-discInstalling

How to install?

Installing this script is easy. To install it, follow these steps, assuming that you have either curl or wget installed on your Linux system. Choose your operating system to get started:

chevron-rightWindowshashtag

Just use this command in your PowerShell command prompt:

Invoke-WebRequest -Uri https://raw.githubusercontent.com/Aptivi/bskyid/main/src/bskyid.ps1 -OutFile bskyid.ps1
chevron-rightLinuxhashtag

Installation on Linux systems can be done in two ways.

circle-info

You'll have to install curl, irrespective of what method you prefer, since this script internally uses curl.

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/bskyid/main/src/bskyid > $HOME/.local/bin/bskyid
$ wget -O$HOME/.local/bin/bskyid https://raw.githubusercontent.com/Aptivi/bskyid/main/src/bskyid

After that, you'll need to execute the below command to ensure that the script is executable:

$ chmod +x $HOME/.local/bin/bskyid

System-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/bskyid/main/src/bskyid | sudo tee /usr/local/bin/bskyid
$ sudo wget -O/usr/local/bin/bskyid https://raw.githubusercontent.com/Aptivi/bskyid/main/src/bskyid

After that, you'll need to execute the below command to ensure that the script is executable:

$ sudo chmod +x /usr/local/bin/bskyid

Last updated