Sun Jul 09 2023 17:30:31 GMT+0000 (Coordinated Universal Time)
Saved by @thyrus #sh
curl --location --request GET 'https://developers.viawallet.com/openapi/api/xrp/v1/address/txs?address=r3CVjHBjYJmDWQm4Xt3GYbYoqixcL91fTu'
#sh
node -v > .nvmrc
printf "%s\n%s\nus-east-1\njson" "$KEY_ID" "$SECRET_KEY" | aws configure --profile my-profile
open -a "Google Chrome" index.html
#!/bin/bash read -p "Are you sure you wish to execute \`$(pbpaste)\`? (Y/n) " [[ $REPLY =~ ^[Yy]?$ ]] && pbpaste | bash
#!/bin/bash PBTEMP=$(mktemp -t pbtemp) pbpaste > $PBTEMP nano -t $PBTEMP source $PBTEMP rm $PBTEMP
# For brews $ brew info --json $(brew list) | jq -r '.[] | select(.caveats != null) | "\n\nName: \(.name)\nCaveats: \(.caveats)"' # For casks $ brew cask --json=v1 info $(brew cask list) | jq -r '.[] | select(.caveats != null) | "\n\nName: \(.name)\nCaveats: \(.caveats)"'
git branch | grep -v "master" | xargs git branch -D Explanation: 🛒 Get all branches (except for the master) via git branch | grep -v "master" command 👇 Select every branch with xargs command 💦 Delete branch with xargs git branch -D
printf "\n>name\naagg" >> temp.fa
source ~/.bashrc
@echo off powershell -Command "Start-Process cmd -Verb RunAs -ArgumentList '/c cd /d %CD% && %*'" @echo on
source "$( dirname "$( which "$0" )" )/lib/B"
#bash #sh #script #shell #shellscript
#!/bin/bash # Bash Menu Script Example PS3='Please enter your choice: ' options=("Option 1" "Option 2" "Option 3" "Quit") select opt in "${options[@]}" do case $opt in "Option 1") echo "you chose choice 1" ;; "Option 2") echo "you chose choice 2" ;; "Option 3") echo "you chose choice $REPLY which is $opt" ;; "Quit") break ;; *) echo "invalid option $REPLY";; esac done
git stash --include-untracked
chmod +x docker-entrypoint.sh
#sh #git #ps1 #shell
#!/usr/bin/env sh __git_ps1() { git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n' }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments