Upload files to "/"

This commit is contained in:
2026-04-14 21:55:19 +00:00
parent 1496e45509
commit 32507a14cc
3 changed files with 57 additions and 0 deletions

12
0ssh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
clear
echo Server:
read s
echo Port:
read p
echo User:
read u
ssh $u@$s -p $p
echo 'Disconnected.'
read -n1