dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

login-bsky.sh (190B)


      1 #!/bin/sh
      2 
      3 # Quick script to login to bsky cli without saving password to shell history
      4 
      5 read -p "Enter handle: " handle
      6 read -p "Enter password: " password
      7 bsky login "$handle" "$password"