Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

read password bash

# -s parameter hides echo
read -p 'Type your password:' -s PASSWORD
Comment

bash read password

#!/bin/sh
# A POSIX compliant answer
stty -echo
printf "Password: "
read PASSWORD
stty echo
printf "
"
Comment

PREVIOUS NEXT
Code Example
Shell :: get number input batch 
Shell :: linux count files fast 
Shell :: zsh-autosuggestions change key 
Shell :: redwood login 
Shell :: actualizar linux apt 
Shell :: updated git but still showing old version 
Shell :: how to take two ip addresses and perform arithemetic bash 
Shell :: windows build support installation failed unity linux 
Shell :: how to fetch all git branches 
Shell :: TestStand hexadecimal chars 
Shell :: Failed to build logging Installing collected packages: logging Running setup.py install for logging ... error 
Shell :: list of full path of file in text file ubuntu 
Shell :: hadoop change directory ownership 
Shell :: wc - l command in linux 
Shell :: start brave with tor terminal 
Shell :: git clone all repositories in organization 
Shell :: upgrade all content database sharepoint 2013 powershell 
Shell :: npm warn ws butterfly install peer dependencies 
Shell :: conda-forge install web_manager 
Shell :: Redirect is not allowed for a preflight request. 
Shell :: pip install apyori 
Shell :: error: eaccess: permission denied ionic 
Shell :: Cannot open: https://centos7.iuscommunity.org/ius-release.rpm. Skipping 
Shell :: whatsapp web for ubuntu 
Shell :: uninstall nignx 
Shell :: deleting a file inside a tar or zip file linux 
Shell :: creating splash screen for nativescript 
Shell :: add remote origin 
Shell :: phoenix install 
Shell :: how to check my mint version 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =