* ASCIIコード表の数値から文字に変換する [#g8ecceef]
#sh(bash){{
 printf "%b\n" $(printf '%s%x' '\x' 97)

}}
#sh(bash){{
 for n in $(seq 97 122); do
   printf "%b\n" $(printf '%s%x' '\x' $n)
 done

}}
ASCIIコード表の確認はman asciiで。

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS