mirror of
https://github.com/HerrCraziDev/dotfiles.git
synced 2025-12-13 09:36:16 +01:00
7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "Username for $1:"
|
|
read username
|
|
echo "Connecting to $username@$1..."
|
|
ssh $username@$1
|