#!/bin/bash
# Run a command to merge PDF files
# Used to add a context menu in Dolphin for PDF files

pdftk "$@" cat output "${1%.pdf}_merged.pdf"
