Bash Version: 4.0
Patch Level: 35
Release Status: release
Description:
The scripts that willingly and easily ran in background in bash 4.0.28
on my gentoo, stop running on first completed job or so in 4.0.35
(this bash here)... So I have to fg them, and then they do continue
running. But if there's input they need to be given, than they need to
be bg-ed again, and accept input only on the next fg.
Repeat-By:
Here is the script:
#!/bin/bash
#
# The aim of the script is burning the DVD and checking that it's done
well through md5 fingerprint.
#
# It's run like this:
#
# dvd_W_md5_MA-SL_sch.sh 12 0 0 a ISO_FILE.iso descriptor_string
ISO_FILE.iso.md5 &
#
# "sch" is for Schily's cdrecord (but I don't believe that influences
this bug in any way)
#
# I wrote this script, because I could very easily burn on all 4 DVD
drives, at the same time,
# as they would all do the work without any further assistence (old
PATA, so it's slow,
# but it's little work). Just check the md5
# in the file already containing the md5's from previous burns and
accept deleting the image
# of the new disk that was just burned if it was correct... Worked up
to bash 4.0.28 (included).
# But with bash 4.0.35 that is no longer the case. It stops and
doesn't do more than one job
# in the background...
#
iso_file=$5_$6_$4
iso_md5_file=$7
cdrecord -v speed=$1 dev=100$2,$3,0 $5
play -q /usr/share/sounds/KDE-Sys-Log-In-Short.ogg
eject /dev/hd$4
eject /dev/hd$4 -t
readcd dev=100$2,$3,0 f=$iso_file
md5sum $iso_file >> $iso_md5_file
play -q /usr/share/sounds/KDE-Sys-Log-In-Short.ogg
cat $iso_md5_file
echo "Remove $iso_file?"
rm -i $iso_file
eject /dev/hd$4
Bash Version: 4.0
Patch Level: 35
Release Status: release
Description:
The scripts that willingly and easily ran in background in bash 4.0.28 on my
gentoo, stop running on first completed job or so in 4.0.35 (this bash
here)... So I have to fg them, and then they do continue running. But if
there's input they need to be given, than they need to be bg-ed again, and
accept input only on the next fg.
Repeat-By:
Here is the script:
#!/bin/bash
#
# name of the script:
# dvd_W_md5_MA-SL_sch.sh
#
# "sch" is for Schily's cdrecord (but I don't believe that influences this
bug in any way)
#
# The aim of the script is burning the DVD and checking that it's done well
through md5 fingerprint.
#
# It's run like this (for the /dev/hda which is dev=1000,0,0):
#
# dvd_W_md5_MA-SL_sch.sh 12 0 0 a ISO_FILE.iso descriptor_string
ISO_FILE.iso.md5 &
#
Fix:
[Description of how to fix the problem. If you don't know a
fix for the problem, don't include this section.]
This is NOT a bug in bash nor readline. Sorry!