We use a variety of tools to convert node names to title case and then enumerate them in this inventory.
s/ ([a-z])/ \u$1/
perl -ne 'print "$&\n" for /[A-Z][a-z]+/g' |\ sort | uniq
We use a variety of tools to convert node names to title case and then enumerate them in this inventory.
s/ ([a-z])/ \u$1/
perl -ne 'print "$&\n" for /[A-Z][a-z]+/g' |\ sort | uniq