13 lines
292 B
13 lines
292 B
#!/usr/bin/env sh |
|
|
|
# 'say' is a more legible synonym for echo/printf |
|
# Help! Why is this printing a newline??? printf isn't supposed to. Update: It is printing no newline at first then it starts printing one. ??? |
|
say() { |
|
printf "%b\n" "${1}" |
|
} |
|
|
|
say_inline() { |
|
printf "%b" "${1}" |
|
} |
|
|
|
say "$@" |