> > This works fine: > > lame --add-id3v2 --tt 'this "is the tag!"' > > But this gives me the following error: > > lame --add-id3v2 --tt "this is the tag!" > bash: !": event not found >
try using a \ in front of each character that is confusing the shell: lame --add-id3v2 --tt "this is the tag\!" and I think this should also work: lame --add-id3v2 --tt 'this\' is the tag\!' _______________________________________________ mp3encoder mailing list [EMAIL PROTECTED] http://minnie.tuhs.org/mailman/listinfo/mp3encoder
