标签: linux split camelcasing
在linux tcsh shell中工作我希望以小写形式回显camelcase目录名,并将名称的各个部分分开,例如在我的PWD iWantToSplitThisUp >> i want to split this up中。
iWantToSplitThisUp >> i want to split this up
提前致谢
答案 0 :(得分:0)
echo $dirname | sed -e 's/\([a-z]\)\([A-Z]\)/\1 \2/g' | tr A-Z a-z