shell/encrypt-file.ksh

11 lines
74 B
Bash
Raw Normal View History

2022-12-07 02:14:04 +00:00
#!/bin/ksh
echo -n "File: "
read file
touch $file
gpg -c $file
exit 0