9 lines
128 B
Bash
Executable File
9 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
KEY=$1
|
|
FOLDER=`date +"%Y%m%d"`
|
|
mkdir $FOLDER
|
|
cd $FOLDER
|
|
cp ~/.pwsafe.dat expo.dat
|
|
~/bin/encryptGPGFile.sh expo.dat
|
|
|