shell/encrypt-file.ksh

11 lines
74 B
Bash
Executable File

#!/bin/ksh
echo -n "File: "
read file
touch $file
gpg -c $file
exit 0