![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Lowercase to Uppercase | ggovotsis | AIX | 7 | 10-16-2008 10:07 AM |
| Need to change filenames in a particular directory from lowercase to UPPERCASE | Duke_Lukem | UNIX for Dummies Questions & Answers | 7 | 01-07-2008 06:32 PM |
| after i convert upper case to lowercase | Alex20 | Shell Programming and Scripting | 1 | 03-07-2005 04:07 PM |
| Converting to Uppercase | dreams5617 | Shell Programming and Scripting | 3 | 11-12-2004 01:44 AM |
| uppercase to lowercase | webex | Shell Programming and Scripting | 4 | 01-03-2002 02:15 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
How convert lowercase or uppercase
It will only accept one argument where it should be upper or lowercase. if user choose to convert filnames to upper case than it should convert to upper or vice versa. if no action taken by the user then should not do anything
any of the files in the current directory. |
|
||||
|
Use this script to change case name of all files in the current directory as,
Code:
#!/bin/sh
# Muthukumar
# Script to change name from upper to lower / lower to upper
# <usage> [lower | upper]
if [[ $# -ne 1 ]]
then
echo "Usage: $0 [lower|upper]"
exit 1
fi
for file in `find . -type f`
do
if [[ "$1" = "lower" ]]
then
mv $file $(echo $file | tr [[:upper:]] [[:lower:]])
elif [[ "$1" = "upper" ]]
then
mv $file $(echo $file | tr [[:lower:]] [[:upper:]])
else
echo "Unknown option $1. Use upper | lower"
exit 1
fi
done
exit 0
## END ##
|
|
||||
|
hello i need your help
|
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|