# this is .bashrc example to use capecho and hexecho command # # hcd is a replace of the "cd" to using on coding system = HEX # ccd is also another replace of "cd" to using on coding system = CAP # # there are the definitions for # cd, mkdir, rmdir, pushd, rm, ln # replacement. function hcd() { cd $(hexecho "$@"); } function hmkdir() { mkdir $(hexecho "$@"); } function hrmdir() { rmdir $(hexecho "$@"); } function hpushd() { pushd $(hexecho "$@"); } function hrm() { rm $(hexecho "$@"); } function hln() { ln $(hexecho "$@"); } function ccd() { cd $(capecho "$@"); } function cmkdir() { mkdir $(capecho "$@"); } function crmdir() { rmdir $(capecho "$@"); } function cpushd() { pushd $(capecho "$@"); } function crm() { rm $(capecho "$@"); } function cln() { ln $(capecho "$@"); }