mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 20:36:03 +02:00
7 lines
166 B
Bash
Executable file
7 lines
166 B
Bash
Executable file
#!/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
|