Tagged Questions
1
vote
2answers
145 views
Pattern matching from the input arguments
we're trying to enhance the scripts.
Users will pass some arguments and part of the arguments will have 5.0.3 For an example the input argument would be like Jboss5.0.3GA. Since it ( Jboss5.0.3GA ) ...
1
vote
1answer
378 views
How to capitalize word (i.e. first letter to upper) in KornShell
Is there a builtin way in KornShell to capitalize a word, e.g. korn -> Korn? A Bash 4 example to clarify:
str='korn'
echo "${str^}"
If there is not a bultin way to do this in KornShell, what is the ...