Hi Kiyoshi, > Le 5 juil. 2020 à 23:10, Kiyoshi KANAZAWA <yoi_no_myou...@yahoo.co.jp> a > écrit : > > Hi, Akim. > > Checked with some shell(es). > May be you need /bin/bash. > In my case, sh is /usr/xpg4/bin/sh. > > /usr/xpg4/bin/sh > $ printf "\u2022\n" > ? > > /bin/sh (ksh93) > $ printf "\u2022\n" > > /bin/bash > $ printf "\u2022\n" > \u2022 > > /usr/bin/csh > % printf "\u2022\n" > ?
You are right, I should have used single quotes, not double quotes. Besides, make sure you do run the program, not possibly the shell builtin. So the test should be something like $ /usr/local/bin/printf '\u2022\n' • Cheers!