nix/home/program/bash/module/Print.sh

6 lines
82 B
Bash

# Printf shortcut.
# Usage: print [TEXT]
function print() {
printf "%s" "${*}"
}