<?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: lower case/upper case question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798200#M941272</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Standard shell typeset. see man sh-posix&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;           -u   Convert all lowercase characters to uppercase characters.&lt;BR /&gt;                The lowercase -l option is turned off.  Flagged as&lt;BR /&gt;                uppercase.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;typeset -u lala=lala&lt;BR /&gt;echo $lala&lt;BR /&gt;LALA&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                Steve Steel</description>
    <pubDate>Mon, 02 Sep 2002 13:05:19 GMT</pubDate>
    <dc:creator>Steve Steel</dc:creator>
    <dc:date>2002-09-02T13:05:19Z</dc:date>
    <item>
      <title>lower case/upper case question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798199#M941271</link>
      <description>Hi All!!!&lt;BR /&gt;I've the following question.&lt;BR /&gt;I write a shell script that copy a list of file from one directory to another.&lt;BR /&gt;This files came from a Windows system and when I transfer them from Windows to UNIX the name of the files are in the lower case.&lt;BR /&gt;I need to copy these file to another directory in upper case. For example: &lt;BR /&gt;in /home/luca/app/ I've the following file : abcde.txt.&lt;BR /&gt;I need to copy this file in the directory /home/luca2/final like ABCDE.txt.&lt;BR /&gt;Is there a function to help me? &lt;BR /&gt;Does anybody have avy suggestion? Any idea?&lt;BR /&gt;Thanks in advance for your help and your support.&lt;BR /&gt;Regards.&lt;BR /&gt;Luca&lt;BR /&gt;</description>
      <pubDate>Mon, 02 Sep 2002 12:59:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798199#M941271</guid>
      <dc:creator>Luca Frigatti</dc:creator>
      <dc:date>2002-09-02T12:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: lower case/upper case question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798200#M941272</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Standard shell typeset. see man sh-posix&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;           -u   Convert all lowercase characters to uppercase characters.&lt;BR /&gt;                The lowercase -l option is turned off.  Flagged as&lt;BR /&gt;                uppercase.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;typeset -u lala=lala&lt;BR /&gt;echo $lala&lt;BR /&gt;LALA&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                Steve Steel</description>
      <pubDate>Mon, 02 Sep 2002 13:05:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798200#M941272</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2002-09-02T13:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: lower case/upper case question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798201#M941273</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;One method for copy files to new directory,translating lower to upper in filename but keep lower in extension.&lt;BR /&gt;&lt;BR /&gt;file=/home/luca/app/abcde.txt &lt;BR /&gt;cp $file /home/luca2/final/`basename $file .txt | tr '[:upper:]' '[:lower:]'`.txt</description>
      <pubDate>Mon, 02 Sep 2002 13:16:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798201#M941273</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2002-09-02T13:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: lower case/upper case question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798202#M941274</link>
      <description>Sorry&lt;BR /&gt;&lt;BR /&gt;I had shifted upper and lower.&lt;BR /&gt;&lt;BR /&gt;file=/home/luca/app/abcde.txt &lt;BR /&gt;cp $file /home/luca2/final/`basename $file .txt | tr '[:lower:]' '[:upper:]'`.txt  &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Mon, 02 Sep 2002 13:20:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798202#M941274</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2002-09-02T13:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: lower case/upper case question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798203#M941275</link>
      <description>W$ (windows) could care less what the case of the filename is, and if unix receives the file names in lowercase, then this is GOOD! &lt;BR /&gt;&lt;BR /&gt;If you really want to then you need something like this:&lt;BR /&gt;&lt;BR /&gt;cd /home/luca/app;find . -type f | awk '{loname=$1; upname=toupper($1); doit="mv&lt;BR /&gt; " loname " /home/luca2/final/" upname; system(doit);}'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 02 Sep 2002 13:30:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lower-case-upper-case-question/m-p/2798203#M941275</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-09-02T13:30:11Z</dc:date>
    </item>
  </channel>
</rss>

