How to extract string from filename solved

Tim Chase blinux.list at thechases.com
Thu Jul 30 13:11:13 UTC 2015


On July 30, 2015, Tony Baechler wrote:
> #Since there are no spaces in the names, use for loop 
>  
> for i in $(ls *mp3);do 

For the record, this can be simplified to just

  for i in *mp3 ; do

-tim






More information about the Blinux-list mailing list