mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
8 lines
166 B
Bash
8 lines
166 B
Bash
|
#!/bin/bash
|
||
|
# For testing subprocesses that require input
|
||
|
# Ask the user for login details
|
||
|
read -p 'Username: ' user
|
||
|
read -sp 'Password: ' pass
|
||
|
echo
|
||
|
echo Hello $user
|