Re: filename case

2007-03-27 Thread Michelle Konzack
Am 2007-03-11 15:55:10, schrieb Roberto C. Sanchez: > On Sun, Mar 11, 2007 at 09:03:41AM -0500, Ron Johnson wrote: > > On 03/11/07 08:43, L.V.Gandhi wrote: > > > When I copy files to vfat drives , filenames case is changed to lower > > > case. > > > Is there any way to keep them as they are ie Fil

Re: filename case

2007-03-11 Thread Roberto C. Sanchez
On Sun, Mar 11, 2007 at 05:58:19PM -0500, Ron Johnson wrote: > On 03/11/07 14:55, Roberto C. Sanchez wrote: > > On Sun, Mar 11, 2007 at 09:03:41AM -0500, Ron Johnson wrote: > >> On 03/11/07 08:43, L.V.Gandhi wrote: > >>> When I copy files to vfat drives , filenames case is changed to lower > >>> c

Re: filename case

2007-03-11 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/11/07 14:55, Roberto C. Sanchez wrote: > On Sun, Mar 11, 2007 at 09:03:41AM -0500, Ron Johnson wrote: >> On 03/11/07 08:43, L.V.Gandhi wrote: >>> When I copy files to vfat drives , filenames case is changed to lower case. >>> Is there any way to

Re: filename case

2007-03-11 Thread Roberto C. Sanchez
On Sun, Mar 11, 2007 at 09:03:41AM -0500, Ron Johnson wrote: > On 03/11/07 08:43, L.V.Gandhi wrote: > > When I copy files to vfat drives , filenames case is changed to lower case. > > Is there any way to keep them as they are ie FileName as FileName > > instead of > filename or FILENAME as FILENAME

Re: filename case

2007-03-11 Thread Cédric Lucantis
Le dimanche 11 mars 2007 18:10, L.V.Gandhi a écrit : > On 3/11/07, Cédric Lucantis <[EMAIL PROTECTED]> wrote: > > Le dimanche 11 mars 2007 14:43, L.V.Gandhi a écrit: > > > When I copy files to vfat drives , filenames case is changed to lower > > > > case. > > > > > Is there any way to keep them as

Re: filename case

2007-03-11 Thread L . V . Gandhi
On 3/11/07, Cédric Lucantis <[EMAIL PROTECTED]> wrote: > > When I copy files to vfat drives , filenames case is changed to lower > > case. Is there any way to keep them as they are ie FileName as FileName > > instead of filename or FILENAME as FILENAME instead of filename ? > > I think this work

Re: filename case

2007-03-11 Thread L . V . Gandhi
On 3/11/07, Cédric Lucantis <[EMAIL PROTECTED]> wrote: Le dimanche 11 mars 2007 14:43, L.V.Gandhi a écrit: > When I copy files to vfat drives , filenames case is changed to lower case. > Is there any way to keep them as they are ie FileName as FileName instead > of filename or FILENAME as FILENA

Re: filename case

2007-03-11 Thread Cédric Lucantis
> > When I copy files to vfat drives , filenames case is changed to lower > > case. Is there any way to keep them as they are ie FileName as FileName > > instead of filename or FILENAME as FILENAME instead of filename ? > > I think this works: > > tar -C /path/to/source -cf - . | ( cd /path/to/dest

Re: filename case

2007-03-11 Thread Cédric Lucantis
Le dimanche 11 mars 2007 14:43, L.V.Gandhi a écrit : > When I copy files to vfat drives , filenames case is changed to lower case. > Is there any way to keep them as they are ie FileName as FileName instead > of filename or FILENAME as FILENAME instead of filename ? I think this works: tar -C /pa

Re: filename case

2007-03-11 Thread Andrei Popescu
Ron Johnson <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 03/11/07 08:43, L.V.Gandhi wrote: > > When I copy files to vfat drives , filenames case is changed to > > lower case. Is there any way to keep them as they are ie FileName > > as FileName instead of >

Re: filename case

2007-03-11 Thread Andrei Popescu
L.V.Gandhi <[EMAIL PROTECTED]> wrote: > When I copy files to vfat drives , filenames case is changed to lower > case. Is there any way to keep them as they are ie FileName as > FileName instead of filename or FILENAME as FILENAME instead of > filename ? The 'shortname=' mount option seems related

Re: filename case

2007-03-11 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/11/07 08:43, L.V.Gandhi wrote: > When I copy files to vfat drives , filenames case is changed to lower case. > Is there any way to keep them as they are ie FileName as FileName > instead of > filename or FILENAME as FILENAME instead of filename ?

Re: filename prefixes while transfering images from memory cards

2006-04-05 Thread Justin Guerin
H.S. wrote: > kamaraju kusumanchi wrote: > >> [snip] > > I am already quite familiar with this method. However, if I have large > number of images in my memory card, it is much more convenient to see > the images in a browser, select the ones belong to a specific group, and > copy them over to t

Re: filename prefixes while transfering images from memory cards

2006-04-05 Thread H.S.
theo wrote: > Ron Johnson wrote: > >>>b=`basename $i .jpg` > > or b=${i%.jpg} > (basename doesn't work with spaces in filenames). > > cheers, > theo. I does if you use double quotes: $> for f in *.jpg; do bn=`basename "$f" .jpg`; echo $bn; done ->HS -- To UNSUBSCRIBE, email to [EMA

Re: filename prefixes while transfering images from memory cards

2006-04-05 Thread theo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ron Johnson wrote: > b=`basename $i .jpg` or b=${i%.jpg} (basename doesn't work with spaces in filenames). cheers, theo. PS : Sorry Ron for the reply out of the list. I never did it before. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2

Re: filename prefixes while transfering images from memory cards

2006-04-04 Thread Sumo Wrestler (or just ate too much)
H.S. wrote: [...] So, to put it in very approximate terms, I am enquiring if my memory card maybe seen as a camera with an application in the same way as gtkam sees a camera through the USB port. ->HS Probably not. If it were me, I'd put each group of files into its own directory, then use

Re: filename prefixes while transfering images from memory cards

2006-04-04 Thread Ron Johnson
On Tue, 2006-04-04 at 22:12 -0400, H.S. wrote: > Ron Johnson wrote: > > >> > >>Adding a prefix to all the files in a directory is as easy as > >> > >>for i in *; do mv $i prefix$i; done > > > > > > Or you could use jhead. > > > > This command looks at the Exif data in each jpeg in a directory,

Re: filename prefixes while transfering images from memory cards

2006-04-04 Thread H.S.
Ron Johnson wrote: >> >>Adding a prefix to all the files in a directory is as easy as >> >>for i in *; do mv $i prefix$i; done > > > Or you could use jhead. > > This command looks at the Exif data in each jpeg in a directory, > extracts the timestamp, and renames each file to the timestamp. >

Re: filename prefixes while transfering images from memory cards

2006-04-04 Thread H.S.
kamaraju kusumanchi wrote: > > Adding a prefix to all the files in a directory is as easy as > > for i in *; do mv $i prefix$i; done > > (tested under bash). So one approach is to copy the files from the > memory card to a temporary directory and run the above command. > > More such goodies ca

Re: filename prefixes while transfering images from memory cards

2006-04-04 Thread Ron Johnson
On Tue, 2006-04-04 at 20:37 -0400, kamaraju kusumanchi wrote: > H.S. wrote: > > Hi, > > > > In gtkam, and maybe also in digikam, when we connect a camera and > > download images to the hard disk, we can specify the destination folder > > and also filename prefixes (along with dates IIRC) and get ap

Re: filename prefixes while transfering images from memory cards

2006-04-04 Thread kamaraju kusumanchi
H.S. wrote: Hi, In gtkam, and maybe also in digikam, when we connect a camera and download images to the hard disk, we can specify the destination folder and also filename prefixes (along with dates IIRC) and get appropriate image file names, e.g. 20060404_funpicnic.jpg. This is very helpful in

This is an autoreply...[Re: {Filename?} Re: Question]

2005-06-12 Thread cv_brs
Hello, Hereafter please send your emails to [EMAIL PROTECTED] instead of [EMAIL PROTECTED] This [EMAIL PROTECTED] would be deactivated shortly. -- Open WebMail Project (http://openwebmail.org) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [E

This is an autoreply...[Re: {Filename?} Re: Free porn]

2005-06-07 Thread doc_inward
Hello, Hereafter please send your emails to [EMAIL PROTECTED] instead of [EMAIL PROTECTED] This [EMAIL PROTECTED] would be deactivated shortly. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: filename problem

2004-07-31 Thread jakob bratkovic
You could try a command like: $ find ./dirname/ -printf "%i\n" to list all inodes in the directory. And then delete the appropriate inode. Jakob -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: filename problem

2004-07-28 Thread Johann Spies
Hallo Thomas, On Tue, Jul 27, 2004 at 12:39:30PM -0400, Thomas Meggs wrote: > I have a few files on my system which I'm having issues dealing > with. Here is the story: Did you try using mc? Regards Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van

Re: filename problem

2004-07-27 Thread Thomas Meggs
Actually, I have been using filename completion in all of the examples contained in my original email. I even tried tcsh to double check that it wasn't a problem with bash's autocomplete. /tom On Tue, 27 Jul 2004, Greg Folkert wrote: > On Tue, 2004-07-27 at 14:35, Thomas Meggs wrote: > > Here i

Re: filename problem

2004-07-27 Thread Carlos Sousa
On Tue, 27 Jul 2004 12:39:30 -0400 (EDT) Thomas Meggs wrote: > ... > File can't be mv'd (here it is quoted): > # mv "egotrippi_-_??l??_koskaan_ikin??.mp3" test.mp3 > mv: cannot stat `egotrippi_-_?\346l?\346_koskaan_ikin?\346.mp3': No such > file or directory > ... > I've also tried removing the fil

Re: filename problem

2004-07-27 Thread Greg Folkert
On Tue, 2004-07-27 at 14:35, Thomas Meggs wrote: > Here is example output: > > # ls -i > ls: egotrippi_-_??l??_koskaan_ikin??.mp3: No such file or directory > [ output does not contain the inode/file listing ] > > /tom > > On Tue, 27 Jul 2004, Joris Huizer wrote: > > > Maybe you can try, > >

Re: filename problem

2004-07-27 Thread Thomas Meggs
Here is example output: # ls -i ls: egotrippi_-_??l??_koskaan_ikin??.mp3: No such file or directory [ output does not contain the inode/file listing ] /tom On Tue, 27 Jul 2004, Joris Huizer wrote: > Maybe you can try, > ls -i > and then, > find . -inum -ok mv '{}' myfile \; -- To UNSUB

Re: filename problem

2004-07-27 Thread Joris Huizer
Thomas Meggs wrote: Hi - I have a few files on my system which I'm having issues dealing with. Here is the story: File can't be ls'd: # ls -l ls: egotrippi_-_??l??_koskaan_ikin??.mp3: No such file or directory total 135800 [ The error is generated, but then the file isn't listed with the rest of th

Re: filename problem

2004-07-26 Thread John Summerfield
Thomas Meggs wrote: Hi - I have a few files on my system which I'm having issues dealing with. Here is the story: File can't be ls'd: # ls -l ls: egotrippi_-_??l??_koskaan_ikin??.mp3: No such file or directory total 135800 [ The error is generated, but then the file isn't listed with the rest of th

Re: filename completion with nfs

2001-07-10 Thread Dimitri Maziuk
* Richard Froehning ([EMAIL PROTECTED]) spake thusly: > Hi! > > I have troubles using filename completion on nfs-mounted filesystems > with woody. > It generally works. But it seems some dirs are not > seen... . The directories are working and I can use > them. But a cd (with using TAB with bash)

Re: filename completion with nfs

2001-07-10 Thread Ulf Rompe
Richard Froehning <[EMAIL PROTECTED]> writes: > I have troubles using filename completion on nfs-mounted filesystems > with woody. It generally works. But it seems some dirs are not > seen... . The directories are working and I can use them. But a cd > (with using TAB with bash) does not work. Ma

Re: filename completion with nfs

2001-07-10 Thread Richard Froehning
On Tue, Jul 10, 2001 at 01:59:12PM +0200, Sebastiaan wrote: > > > I have troubles using filename completion on nfs-mounted filesystems > > with woody. > > It generally works. But it seems some dirs are not > > seen... . The directories are working and I can use > > them. But a cd (with using TAB

Re: filename completion with nfs

2001-07-10 Thread Sebastiaan
On Tue, 10 Jul 2001, Richard Froehning wrote: > Hi! > > I have troubles using filename completion on nfs-mounted filesystems > with woody. > It generally works. But it seems some dirs are not > seen... . The directories are working and I can use > them. But a cd (with using TAB with bash) does n

Re: #filename#

2000-05-08 Thread Sebastian Canagaratna
I found that I could remove it with rm \#* Sebastian Canagaratna Departmentof Chemistry Ohio NOrthern University Ada, OH 45810 > On Mon, May 08, 2000 at 03:35:55PM -0400, Antonio Rodriguez wrote: > > I created a C file with gcc, then I tried to remove it, but what it > > shows is > > #primo.c#

Re: #filename#

2000-05-08 Thread Mike Werner
On Mon, May 08, 2000 at 03:35:55PM -0400, Antonio Rodriguez wrote: > I created a C file with gcc, then I tried to remove it, but what it > shows is > #primo.c# HPdesktop kernel-2.13 log.002 > AdobeFnt.lst communicator game.001 lilo.ps nsmail > [EMAIL PROTECTED]:~$ > My

Re: filename conversion

1999-02-16 Thread servis
*- On 16 Feb, [EMAIL PROTECTED] wrote about "filename conversion" > hello everyone, > i just uploaded some 800++ files to my debian box (from a windoze box) and > found out that all filenames had been transformed to their uppercase > equivalent ... > anybody knows how do i convert all these f

Re: Filename case - the simple solution ...

1996-09-23 Thread Dale Scheetz
On Mon, 23 Sep 1996 [EMAIL PROTECTED] wrote: > Resolving the case problem can also be solved VeRy simply by typing > the one magical word... case > > - NEXT TIME - when you do your FTP'ing don't forget to use the "case" > statement. > Except that, when you do thi

Re: Filename case - the simple solution ...

1996-09-23 Thread David_Oswald
Resolving the case problem can also be solved VeRy simply by typing the one magical word... case - NEXT TIME - when you do your FTP'ing don't forget to use the "case" statement. For example ... ftp> bin 200 Type set to I

Re: Filename case

1996-09-22 Thread John Goerzen
> ls | awk '{ system("mv " $0 " " tolower($0)) }' Not being familiar with awk, I can only guess that the above code transforms all filenames to lowercase. An easier way, using just the shell, would be: for ASDF in *; do mv $ASDF `echo $ASDF | tr A-Z a-z`; done -- John Goerzen | Syste

Re: Filename case

1996-09-22 Thread Santiago Vila Doncel
-BEGIN PGP SIGNED MESSAGE- ls | awk '{ system("mv " $0 " " tolower($0)) }' -BEGIN PGP SIGNATURE- Version: 2.6.3i Charset: latin1 iQCVAwUBMkUGTCqK7IlOjMLFAQFGqgP+O+pLQX1HBwMbUPaPxBXdVMSkTwdGpZb4 IL77hnWsRsTl97W+O57/aRnLpL1jhQjTWo3Be/r0h/y6Doe3e87LtjV51G0XzCK4 FQ50N8XhNs2y4LxZdMFZW

Re: Filename case

1996-09-22 Thread Philippe Troin
No python, no fancy stuff, nothing but plain old bash: for i in *; do j=`echo $i | tr '[A-Z]' '[a-z]'` if [ "$i" != "$j" ]; then mv $i $j fi done Or on a single line: for i in *; do j=`echo $i | tr '[A-Z]' '

Re: Filename case

1996-09-21 Thread Brian C. White
> I'm using Debian .96 and have a need to change all the files in a > directory from uppercase to lowercase (ftp'ed from DOS). Is there a > quick method or command to do this? There is a command called 'rename' that comes with perl. You can find it as: /usr/doc/examples/perl/rename.gz

Re: Filename case

1996-09-21 Thread James A. Robinson
> I'm using Debian .96 and have a need to change all the files in a > directory from uppercase to lowercase (ftp'ed from DOS). Is there a > quick method or command to do this? If you are using bash as a shell, or you switch into bash, you can use the following: for i in *;do mv $

Re: Filename case

1996-09-21 Thread J.H.M.Dassen
> I'm using Debian .96 and have a need to change all the files in a > directory from uppercase to lowercase (ftp'ed from DOS). Is there a > quick method or command to do this? Not a single command, but a small combination of utils will do. [Solution for use with a Bourne shell, e.g. bash;

Re: Filename case

1996-09-21 Thread Tom Fawcett
> "JR" == John Roesch <[EMAIL PROTECTED]> writes: JR> I'm using Debian .96 and have a need to change all the files in a JR> directory from uppercase to lowercase (ftp'ed from DOS). Is there a JR> quick method or command to do this? If you installed Perl: perl -e 'for $file

Re: Filename case

1996-09-21 Thread Ezio Manini
On Fri, 20 Sep 1996, John Roesch wrote: > > I'm using Debian .96 and have a need to change all the files in a > directory from uppercase to lowercase (ftp'ed from DOS). Is there a > quick method or command to do this? Have you the "python" package installed? Cd's where the files are and e