Files
2026-07-13 12:39:17 +08:00

7 lines
103 B
Bash

#!/bin/sh
customer="$1"
amount="$2"
printf 'Credit note for %s: -$%s debit.\n' "$customer" "$amount"