blob: b23dd432d5bcf07a373e24e284eb4c25701b2c4f [file] [log] [blame]
#!/bin/bash
# A trivial helper script to concat authorized_key files
if [[ $# -lt 2 ]]; then
echo "$0 <output-file> <input-files>..."
exit 1
fi
rm -f "$1"
cat "${@:2}" > "$1"