dots/shellenv/.functions

17 lines
286 B
Plaintext
Raw Normal View History

2024-07-29 03:05:45 +00:00
#!/usr/bin/env bash
today() {
echo -n "Today's date is: "
date +"%A, %B %-d, %Y"
}
# Create a new directory and enter it
function mkd() {
mkdir -p "$@" && cd "$_";
}
pdfmerge() {
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTTINGS=/prepress\
-sOutputFile=$@ ;
}