Unlock multiple pdf and merge them using bash script
#!/bin/bash
# Check for input files
if [ $# -eq 0 ]; then
echo "Usage: $0 file1.pdf file2.pdf ..."
exit 1
fi
# Read password securely
read -sp "Enter PDF password: " password
echo
# Create temporary directory
temp_dir=$(mktemp -d)
# Decrypt a...
kaiyom.hashnode.dev1 min read