Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
,
(der fehler ist mir auch schon aufgefallen, war bisher nur zu faul mich auch noch um die rechtschreibung zu kümmern). Und der zweite patch entfernt zeilen die garnicht vorhanden sind
(du weißt schon wie man diff benutzt?
) ... ok, und nun in ernst: danke!
).This post has been edited 1 times, last edit by "LordJaxom" (May 1st 2004, 11:14am)


|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
progressbar()
{
if [ $# != 1 ]
then
echo "Usage: progressbar {progress}"
exit 1
fi
echo "show $(( 65534 * $1 / 100 ))" > /proc/splash
}
progressbar XXX
|