Skip to Content.
Sympa Menu

sm-sorcery-bugs - [SM-Sorcery-Bugs] [Bug 5473] creating md5sum log freezes with named pipe

sm-sorcery-bugs AT lists.ibiblio.org

Subject: Bugs for Sorcery are reported here

List archive

Chronological Thread  
  • From: bugzilla-daemon AT metalab.unc.edu
  • To: sm-sorcery-bugs AT lists.ibiblio.org
  • Subject: [SM-Sorcery-Bugs] [Bug 5473] creating md5sum log freezes with named pipe
  • Date: Wed, 28 Jan 2004 11:07:36 -0500

http://bugs.sourcemage.org/show_bug.cgi?id=5473





------- Additional Comments From shivaken AT jcom.home.ne.jp 2004-01-28 11:07
-------
That's good!
I tested below code with qt install log (5395 lows).

------- without checking -------------------------
while read LINE; do
md5sum $LINE;
done < /var/log/sorcery/install/qt-x11-3.2.2
---------------------------------------------------------------
5.23s user 8.70s system 97% cpu 14.254 total
5.18s user 8.76s system 98% cpu 14.216 total
5.17s user 8.75s system 97% cpu 14.261 total

------- with checking -------------------------
while read LINE; do
[ -f $LINE] && md5sum $LINE;
done < /var/log/sorcery/install/qt-x11-3.2.2
---------------------------------------------------------------
5.17s user 8.86s system 97% cpu 14.320 total
5.26s user 8.85s system 98% cpu 14.398 total
5.29s user 8.77s system 98% cpu 14.342 tota




------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.




Archive powered by MHonArc 2.6.24.

Top of Page