在Linux中以大写字母拆分camelcase路径

时间:2015-02-08 23:37:00

标签: linux split camelcasing

在linux tcsh shell中工作我希望以小写形式回显camelcase目录名,并将名称的各个部分分开,例如在我的PWD iWantToSplitThisUp >> i want to split this up中。

提前致谢

1 个答案:

答案 0 :(得分:0)

echo $dirname | sed -e 's/\([a-z]\)\([A-Z]\)/\1 \2/g' | tr A-Z a-z