running bitcoin in terminal code example
Example 1: running docker in wsl
sudo apt-get update -y
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update -y
sudo apt-get install -y docker-ce
sudo usermod -aG docker $USER
Example 2: running file pug
sudo npm install pug --global
pug -w ./ -o ./html -P
Example 3: running eslint
"lint": "eslint back/*.js && eslint backTest/*.js && eslint front/actions/*.js"