5 lines
57 B
Bash
Executable File
5 lines
57 B
Bash
Executable File
#!/bin/bash
|
|
IN=$1
|
|
OUT=$2
|
|
gpg --decrypt --output $OUT $IN
|