linuxaudio.org
News
About
Members
Music
Policy
Logo
Contact
Search
Mail Archive
Resources
Re: [linux-audio-user] ardour and mp3?
Previous message: [
thread
] [
date
] [
author
]
Next message: [thread] [
date
] [
author
]
From:
Brian Dunn
<
job17and9@...
>
To: A list for linux audio users <linux-audio-user@...>
Subject:
Re: [linux-audio-user] ardour and mp3?
Date: Tuesday, February 6, 2007 - 8:05 pm
Adam Sampson wrote:
quoted text
> Brian Dunn writes:
>
>
>> for i in `ls *.mp3`; do
>>
>
> That won't work if the filenames contain spaces (since the shell will
> split ls's output on spaces), and it's needlessly inefficient. It's
> better to say:
>
> for i in *.mp3; do
>
> or if you really do want to use the output of a command, then:
>
> find . -name '*.mp3' | while read i; do
>
> (Not supporting spaces in filenames in the modern world is silly --
> particularly for music files! Newlines I'm less concerned about...)
>
>
Well, I stand corrected I've never used that while syntax before. It
looks useful. thanks.
Previous message: [
thread
] [
date
] [
author
]
Next message: [thread] [
date
] [
author
]
Messages in current thread:
[linux-audio-user] ardour and mp3?
, Matt Price
, (Sat Feb 3, 9:39 pm)
Re: [linux-audio-user] ardour and mp3?
, rob
, (Sun Feb 4, 11:30 am)
Re: [linux-audio-user] ardour and mp3?
, Brian Dunn
, (Sat Feb 3, 10:17 pm)
Re: [linux-audio-user] ardour and mp3?
, Adam Sampson
, (Sun Feb 4, 2:56 pm)
Re: [linux-audio-user] ardour and mp3?
, Brian Dunn
, (Tue Feb 6, 8:05 pm)
Re: [linux-audio-user] ardour and mp3?
, Ken Restivo
, (Sat Feb 3, 10:16 pm)
Re: [linux-audio-user] ardour and mp3?
, Paul Davis
, (Sat Feb 3, 10:33 pm)
Re: [linux-audio-user] ardour and mp3?
, Ken Restivo
, (Sun Feb 4, 4:06 am)
Re: [linux-audio-user] ardour and mp3?
, paul wisehart
, (Sat Feb 3, 10:50 pm)
Re: [linux-audio-user] ardour and mp3?
, Arnold Krille
, (Mon Feb 5, 8:55 pm)
Re: [linux-audio-user] ardour and mp3?
, Paul Davis
, (Sat Feb 3, 9:58 pm)
Re: [linux-audio-user] ardour and mp3?
, Matt Price
, (Tue Feb 6, 4:27 pm)
Re: [linux-audio-user] ardour and mp3?
, Paul Davis
, (Tue Feb 6, 6:34 pm)