<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: conversion from small to CAPS lets. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633058#M41702</link>
    <description>Since I did not see the sed version&lt;BR /&gt;&lt;BR /&gt;sed filename 'y/abc...xyz/ABC...xyz/'&lt;BR /&gt;&lt;BR /&gt;fill in the ... part with then entire alphabet. Of course this is not the pretty way to do things, but it is the sed way.&lt;BR /&gt;&lt;BR /&gt;Enjoy,&lt;BR /&gt;C</description>
    <pubDate>Wed, 19 Dec 2001 14:43:00 GMT</pubDate>
    <dc:creator>Craig Rants</dc:creator>
    <dc:date>2001-12-19T14:43:00Z</dc:date>
    <item>
      <title>conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633047#M41691</link>
      <description>Hi Forum,&lt;BR /&gt;&lt;BR /&gt;Wann to know how to covert string of "small letters" into CAPS one. &lt;BR /&gt;&lt;BR /&gt;Please reply asap.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2001 13:36:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633047#M41691</guid>
      <dc:creator>deepak_9</dc:creator>
      <dc:date>2001-12-19T13:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633048#M41692</link>
      <description>you can like this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;echo "string"| dd conv=ucase</description>
      <pubDate>Wed, 19 Dec 2001 13:42:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633048#M41692</guid>
      <dc:creator>federico_3</dc:creator>
      <dc:date>2001-12-19T13:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633049#M41693</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Use tr.  From man tr:&lt;BR /&gt;&lt;BR /&gt;Translate all lower case characters in file1 to upper case and write the result to standard output.&lt;BR /&gt;tr "[:lower:]" "[:upper:]" &lt;FILE1&gt;&lt;/FILE1&gt;&lt;BR /&gt;Or:  echo string | tr "[:lower:]" "[:upper:]"&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Wed, 19 Dec 2001 13:52:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633049#M41693</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2001-12-19T13:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633050#M41694</link>
      <description>Another way could be the following:&lt;BR /&gt;&lt;BR /&gt;echo "string"| tr "[:lower:]" "[:upper:]"</description>
      <pubDate>Wed, 19 Dec 2001 13:52:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633050#M41694</guid>
      <dc:creator>federico_3</dc:creator>
      <dc:date>2001-12-19T13:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633051#M41695</link>
      <description>typeset -u string&lt;BR /&gt;string="test"&lt;BR /&gt;echo $string&lt;BR /&gt;TEST</description>
      <pubDate>Wed, 19 Dec 2001 13:54:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633051#M41695</guid>
      <dc:creator>Dave Peeke</dc:creator>
      <dc:date>2001-12-19T13:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633052#M41696</link>
      <description>echo this is a test | tr "[a-z]" "[A-Z]"&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Wed, 19 Dec 2001 13:55:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633052#M41696</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2001-12-19T13:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633053#M41697</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The answers are quite satisfactory but what if I wann to retain the file extensions as it is...I mean for "abc.sql", it should be "ABC.sql" convention.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2001 14:00:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633053#M41697</guid>
      <dc:creator>deepak_9</dc:creator>
      <dc:date>2001-12-19T14:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633054#M41698</link>
      <description>Hi Deepak,&lt;BR /&gt;&lt;BR /&gt;If you only have a "single" dot, then&lt;BR /&gt;&lt;BR /&gt;echo abc.def | awk -F. '{print toupper($1)"."$2}'&lt;BR /&gt;ABC.def&lt;BR /&gt;&lt;BR /&gt;should be OK.&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.</description>
      <pubDate>Wed, 19 Dec 2001 14:03:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633054#M41698</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-12-19T14:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633055#M41699</link>
      <description>you would do something like this&lt;BR /&gt;&lt;BR /&gt;NAME=`echo $STRING | awk -F. '{print $1}'&lt;BR /&gt;EXT=`echo $STRING | awk -F. '{print $2}'&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2001 14:05:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633055#M41699</guid>
      <dc:creator>Jeff Machols</dc:creator>
      <dc:date>2001-12-19T14:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633056#M41700</link>
      <description>If you want to limit your translation to files with only 1 dot in them:&lt;BR /&gt;&lt;BR /&gt;for i in `ls *\.*`&lt;BR /&gt;do&lt;BR /&gt;cnt=`echo $i | awk -F. '{print NF}'`&lt;BR /&gt;if [ ${cnt} -eq 2 ]&lt;BR /&gt;then&lt;BR /&gt;echo $i | awk -F. '{print toupper($1)"."$2}'&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Wed, 19 Dec 2001 14:23:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633056#M41700</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2001-12-19T14:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633057#M41701</link>
      <description>A refinement to my last post:&lt;BR /&gt;&lt;BR /&gt;for i in `ls *\.*`&lt;BR /&gt;do&lt;BR /&gt;echo $i | awk -F. '{if (NF == 2) print toupper($1)"."$2}'&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Wed, 19 Dec 2001 14:33:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633057#M41701</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2001-12-19T14:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633058#M41702</link>
      <description>Since I did not see the sed version&lt;BR /&gt;&lt;BR /&gt;sed filename 'y/abc...xyz/ABC...xyz/'&lt;BR /&gt;&lt;BR /&gt;fill in the ... part with then entire alphabet. Of course this is not the pretty way to do things, but it is the sed way.&lt;BR /&gt;&lt;BR /&gt;Enjoy,&lt;BR /&gt;C</description>
      <pubDate>Wed, 19 Dec 2001 14:43:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633058#M41702</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2001-12-19T14:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633059#M41703</link>
      <description>i'd do like the following:&lt;BR /&gt;&lt;BR /&gt;ls -1 abc.sql | awk -F "." '{system("mv" ""$0 "" toupper($1) ".sql" }'</description>
      <pubDate>Wed, 19 Dec 2001 14:50:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633059#M41703</guid>
      <dc:creator>federico_3</dc:creator>
      <dc:date>2001-12-19T14:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: conversion from small to CAPS lets.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633060#M41704</link>
      <description>i'd do like the following:&lt;BR /&gt;&lt;BR /&gt;ls -1 abc.sql | awk -F "." '{system("mv" " " $0 " " toupper($1) ".sql" }'</description>
      <pubDate>Wed, 19 Dec 2001 14:50:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/conversion-from-small-to-caps-lets/m-p/2633060#M41704</guid>
      <dc:creator>federico_3</dc:creator>
      <dc:date>2001-12-19T14:50:59Z</dc:date>
    </item>
  </channel>
</rss>

