Adding files

This commit is contained in:
Scott C. MacCallum 2022-12-06 21:14:04 -05:00
commit 532e9d266e
3 changed files with 32 additions and 0 deletions

10
encrypt-file.ksh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/ksh
echo -n "File: "
read file
touch $file
gpg -c $file
exit 0

11
ls_remote.ksh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/ksh
echo -n "Remote user: "
read remote_user
echo -n "Host: "
read host
mosh $remote_user@$host ls
exit 0

11
pwd_remote.ksh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/ksh
echo -n "Remote user: "
read remote_user
echo -n "Host: "
read host
mosh $remote_user@$host pwd
exit 0