Y
Hacker News
new
|
ask
|
show
|
jobs
by
throwaway2037
1333 days ago
echo is unreliable; I agree. Instead, I use "paranoid" printf with leading double dash:
prinf -- "fmt str here..." "$carefully" "$quoted" "$args"
1 comments
ndsipa_pomu
1333 days ago
printf -- "fmt str here..." "${carefully}" "${quoted}" "${args}"
link
yourad_io
1333 days ago
What is the difference?
link
throwaway2037
1332 days ago
In this example: None
link