Commit 01ecca26 authored by Nikitha Moosapet's avatar Nikitha Moosapet

String Manipulation to uppercase

parent f54a7ff4
#! /bin/bash
for file in *
do
if [ -f $file ]
then
echo $file | tr '[a-z]' '[A-Z]'
fi
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment