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
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
-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
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
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
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
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
> > 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
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
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 >
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
-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 ?
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
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
-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
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
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,
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.
>
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
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
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
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
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]
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]
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
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
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
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,
> >
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
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
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
* 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)
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
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
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
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#
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
*- 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
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
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
> 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
-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
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]' '
> 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
> 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 $
> 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;
> "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
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
48 matches
Mail list logo