mono-complete arch
sudo pacman -S mono
Here is what the above code is Doing:
1. Install the package manager for Arch Linux, pacman.
2. Install the Mono package.
sudo pacman -S mono
Here is what the above code is Doing:
1. Install the package manager for Arch Linux, pacman.
2. Install the Mono package.
cd /tmp wget –content-disposition \ “https://gist.githubusercontent.com/djfdyuruiry/6720faa3f9fc59bfdf6284ee1f41f950/raw/952347f805045ba0e6ef7868b18f4a9a8dd2e47a/install-sg.sh” Here is what the above code is Doing: 1. Create a temporary directory 2. Download the install script from the gist 3. Run the script
npm test Here is what the above code is Doing: 1. We’re importing the unittest module, which is the standard Python module for writing unit tests. 2. We’re creating a class called TestStringMethods, which inherits from unittest.TestCase. 3. We’re defining a setUp method, which is run before each test method we define. 4. We’re defining…
Install-Module -Name WindowsCompatibility -Scope CurrentUser -Force -AllowClobber Import-WinModule -Name ServerManager Get-Command -Module ServerManager Here is what the above code is Doing: 1. Install the Windows Compatibility module from the PowerShell Gallery 2. Import the ServerManager module from the Windows Compatibility module 3. List the commands in the ServerManager module
$ sudo apt install build-essential python3-pip libffi-dev python3-dev python3-setuptools libssl-dev -y Here is what the above code is Doing: 1. Installing the build-essential package, which is a meta-package that installs the GNU C compiler and other development tools. 2. Installing the Python 3 development headers. 3. Installing the Python 3 setuptools package, which is a…
# exit when any command fails set -e Here is what the above code is Doing: 1. It’s setting the working directory to the directory of the script. 2. It’s setting the script to exit when any command fails.
sudo chown yoggesh:yoggesh /opt/lampp/htdocs sudo chmod 777 /opt/lampp/htdocs Here is what the above code is Doing: 1. We are creating a directory called “yoggesh” in the /opt/lampp/htdocs directory. 2. We are changing the ownership of the “yoggesh” directory to the user “yoggesh” and the group “yoggesh”. 3. We are changing the permissions of the “yoggesh”…