mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-24 08:52:21 +02:00
8 lines
166 B
Bash
Executable File
8 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
|