haven't tried it yet backing up the directory into a tarball that'll take a while. Do you think you could comment it for me? basically programming of any kind is a weak point for me. I'm trying to improve. but copying and pasting someone elses code may fix my issue but it won't fix my understanding. "give a man a fish... teach a man to fish..." sort of thing.
<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div style="direction: ltr;"><span class="e" id="q_10a71087ee366eef_1"><br><br><div><span class="gmail_quote">
On 4/6/06, <b class="gmail_sendername">Bruce Smith</b> &lt;<a href="mailto:blubdog@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">blubdog@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Disclaimer, backup the directory first!&nbsp;&nbsp;:-)<br>And copy/paste exactly!<br><br>You can test without changing anything by adding an &quot;echo&quot; in front of<br>the &quot;mv&quot; and optionally commenting out the &quot;set&quot; statements for better
<br>readability.<br><br>One bug (feature?) is it will replace multiple spaces with only ONE underscore.<br><br>You need to run it with the filename(s) as arguments.&nbsp;&nbsp;i.e.:<br>&nbsp;&nbsp;/path/to/scriptname *<br>&nbsp;&nbsp;/path/to/scriptname a*
<br>&nbsp;&nbsp;/path/to/scriptname 'File to Test this&nbsp;&nbsp;Thing on.TXT'<br><br> - BS<br><br><br>#!/bin/sh<br>infile=upper<br>outfile=lower<br>for f<br>do<br>&nbsp;&nbsp;&nbsp;&nbsp;if [ -f &quot;$f&quot; ]; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;l=&quot;$(echo $f|sed 's/ /_/g'|tr &quot;[:${infile}:]&quot; &quot;[:${outfile}:]&quot;)&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if [ &quot;$f&quot; != &quot;$l&quot; ]; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set -x<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mv -i &quot;$f&quot; &quot;$l&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set +x<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fi<br>&nbsp;&nbsp;&nbsp;&nbsp; fi<br>done<br># end of script<br><br><br>On 4/6/06, Caleb Cushing &lt;
<a href="mailto:xenoterracide@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">xenoterracide@gmail.com</a>&gt; wrote:<br>&gt; I need/want to change the names of all the files and folders in my /music
<br>&gt; directory to where they don't have spaces in them and all the names are in
<br>&gt; lowercase. This is what I have so far:<br>&gt;<br>&gt; #!/bin/bash<br>&gt;<br>&gt; ls -R |&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# List directory recursively<br>&gt; sed -e 's/ /_/g' |&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Remove spaces change them to underscore
<br>&gt; tr [:upper:] [:lower:] |&nbsp;&nbsp;&nbsp;&nbsp; #change letters from upper to lower<br>&gt;<br>&gt; that gives me the output of what I would want the directory and file<br>&gt; structure to look like when I'm done. I am unsure however how to take that
<br>&gt; output and move the files and directories to acually look like that when I<br>&gt; am finished. It's also the tricky part because if I don't do it right...<br>&gt; well it might be an even bigger pain to fix. I pretty sure I have a lot more
<br>&gt; to do to get this workable... and I'm just having problems wrapping my brain<br>&gt; around it.<br>&gt;<br>&gt; snippet:before<br>&gt; #ls -R<br>&gt;<br>&gt; ./3 Doors Down:<br>&gt; Away from the Sun&nbsp;&nbsp;Seventeen Days&nbsp;&nbsp;The Better Life&nbsp;&nbsp;
Thumbs.db&nbsp;&nbsp;desktop.ini<br>&gt;<br>&gt; ./3 Doors Down/Away from the Sun:<br>&gt; 01-When I'm Gone-3 Doors Down-Away from the Sun.mp3<br>&gt; 02-Away from the Sun-3 Doors Down-Away from the Sun.mp3<br>&gt; 03-The Road I'm On-3 Doors Down-Away from the 
Sun.mp3<br>&gt; 04-Ticket to Heaven-3 Doors Down-Away from the Sun.mp3<br>&gt; 05-Running Out of Days-3 Doors Down-Away from the Sun.mp3<br>&gt; 06-Here Without You-3 Doors Down-Away from the Sun.mp3<br>&gt; 07-I Feel You-3 Doors Down-Away from the 
Sun.mp3<br>&gt; 08-Dangerous Game-3 Doors Down-Away from the Sun.mp3<br>&gt; 09-Changes-3 Doors Down-Away from the Sun.mp3<br>&gt; 10-Going Down in Flames-3 Doors Down-Away from the Sun.mp3<br>&gt; 11-Sarah Yellin'-3 Doors Down-Away from the 
Sun.mp3<br>&gt; AlbumArtSmall.jpg<br>&gt; AlbumArt_{C212FF41-147D-402C-BAC5-1284F8B4C802}_Large.jpg<br>&gt; AlbumArt_{C212FF41-147D-402C-BAC5-1284F8B4C802}_Small.jpg<br>&gt; Folder.jpg<br>&gt; Thumbs.db<br>&gt; desktop.ini

<br>&gt;<br>&gt; snippet:after<br>&gt;<br>&gt; ls -R<br>&gt;<br>&gt; ./3_doors_down:<br>&gt; away_from_the_sun<br>&gt; seventeen_days<br>&gt; the_better_life<br>&gt; thumbs.db<br>&gt; desktop.ini<br>&gt;<br>&gt; ./3_doors_down/away_from_the_sun:
<br>&gt; 01-when_i'm_gone-3_doors_down-away_from_the_sun.mp3<br>&gt; 02-away_from_the_sun-3_doors_down-away_from_the_sun.mp3<br>&gt; 03-the_road_i'm_on-3_doors_down-away_from_the_sun.mp3<br>&gt; 04-ticket_to_heaven-3_doors_down-away_from_the_sun.mp3
<br>&gt; 05-running_out_of_days-3_doors_down-away_from_the_sun.mp3<br>&gt; 06-here_without_you-3_doors_down-away_from_the_sun.mp3<br>&gt; 07-i_feel_you-3_doors_down-away_from_the_sun.mp3<br>&gt; 08-dangerous_game-3_doors_down-away_from_the_sun.mp3
<br>&gt; 09-changes-3_doors_down-away_from_the_sun.mp3<br>&gt; 10-going_down_in_flames-3_doors_down-away_from_the_sun.mp3<br>&gt; 11-sarah_yellin'-3_doors_down-away_from_the_sun.mp3<br>&gt; albumartsmall.jpg<br>&gt; albumart_{c212ff41-147d-402c-bac5-1284f8b4c802}_large.jpg
<br>&gt; albumart_{c212ff41-147d-402c-bac5-1284f8b4c802}_small.jpg<br>&gt; folder.jpg<br>&gt; thumbs.db<br>&gt; desktop.ini<br>&gt;<br>&gt; _______________________________________________<br>&gt; linux-user mailing list<br>

&gt; <a href="mailto:linux-user@egr.msu.edu" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">linux-user@egr.msu.edu</a><br>&gt; <a href="http://mailman.egr.msu.edu/mailman/listinfo/linux-user" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://mailman.egr.msu.edu/mailman/listinfo/linux-user</a><br>&gt;<br>&gt;<br>
&gt;<br></blockquote></div><br>

</span></div></blockquote></div><br>