From: Ulrich Dangel Date: Tue, 20 Oct 2009 22:24:53 +0000 (+0200) Subject: generate f{1..10} filenames X-Git-Tag: v0.9.13~5 X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=554ae978436a38c402a76c1b34958e3209ab5fe1 generate f{1..10} filenames --- diff --git a/grml2usb b/grml2usb index 023e036..764bb2c 100755 --- a/grml2usb +++ b/grml2usb @@ -1119,7 +1119,7 @@ def copy_bootloader_files(iso_mount, target): logo = search_file('logo.16', iso_mount) exec_rsync(logo, syslinux_target + 'logo.16') - for ffile in 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10': + for ffile in ['f%d' % number for number in range(1,11) ]: bootsplash = search_file(ffile, iso_mount) exec_rsync(bootsplash, syslinux_target + ffile)