issue58:c_c
Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
issue58:c_c [2012/03/06 14:28] – créée auntiee | issue58:c_c [2012/03/17 10:16] (Version actuelle) – auntiee | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
+ | ** | ||
I realize that many of our readers are students (as am I). Depending on the country, a new semester has just started, is about to start, or, in the case of Germany, is nearly over. It’s often a good idea to keep a listing (alone or in collaboration with your colleagues) of questions, and their answers, pertaining to the courses you’re taking. | I realize that many of our readers are students (as am I). Depending on the country, a new semester has just started, is about to start, or, in the case of Germany, is nearly over. It’s often a good idea to keep a listing (alone or in collaboration with your colleagues) of questions, and their answers, pertaining to the courses you’re taking. | ||
Ligne 4: | Ligne 5: | ||
It aims to ask the questions, organized in categories, in a random order, and lets you set a fixed delay to answer each of those questions. It is named " | It aims to ask the questions, organized in categories, in a random order, and lets you set a fixed delay to answer each of those questions. It is named " | ||
+ | ** | ||
+ | Je me rends compte que beaucoup de nos lecteurs sont des étudiants (comme je le suis). Selon le pays, un nouveau semestre vient de commencer, est sur le point de commencer, ou, dans le cas de l' | ||
+ | |||
+ | Si vous avez l' | ||
+ | |||
+ | Il a pour but de poser des questions, organisées par catégorie, dans un ordre aléatoire, et vous permet de définir un délai fixe pour répondre à chacune de ces questions. | ||
+ | |||
+ | ** | ||
I'll briefly discuss the functionality of the script, and then explain what each command is used for (including an explanation of the uses within the script). | I'll briefly discuss the functionality of the script, and then explain what each command is used for (including an explanation of the uses within the script). | ||
Ligne 18: | Ligne 27: | ||
A zenity window asks the next pending question in the chosen category. This windows contains a progress bar that reaches 100% after a delay chosen by the player (the only argument of the script), or 20secs by default. Once a category has been exhausted, it is then shuffled again and moved back into the $XDG_DATA_HOME/ | A zenity window asks the next pending question in the chosen category. This windows contains a progress bar that reaches 100% after a delay chosen by the player (the only argument of the script), or 20secs by default. Once a category has been exhausted, it is then shuffled again and moved back into the $XDG_DATA_HOME/ | ||
+ | ** | ||
+ | Je vais discuter brièvement de la fonctionnalité du script et ensuite expliquer pourquoi chaque commande est utilisée (y compris une explication des usages dans le script). | ||
+ | |||
+ | Que fait-il ? | ||
+ | |||
+ | Ce script shell prend les questions dans des fichiers du dossier des catégories et les pose (au hasard) dans une fenêtre GUI formée par Zenity. Il affiche la question, attend, puis affiche la bonne réponse (un peu comme le font les flashcards). | ||
+ | |||
+ | Comment ça marche? | ||
+ | |||
+ | Il utilise shuf pour prendre les fichiers du dossier catégories, | ||
+ | |||
+ | Une fois cela fait, une fenêtre Zenity demande alors à l' | ||
+ | |||
+ | Une fenêtre Zenity pose la question suivante en attente dans la catégorie choisie. Cette fenêtre contient une barre de progression qui atteint 100 % après un délai choisi par le joueur (le seul argument du script), ou 20 secondes par défaut. Une fois une catégorie épuisée, elle est ensuite à nouveau mélangée et déplacée vers le dossier $XDG_DATA_HOME/ | ||
+ | |||
+ | |||
+ | ** | ||
Conditionals: | Conditionals: | ||
Ligne 34: | Ligne 60: | ||
This comparison checks to see if the directory doesn' | This comparison checks to see if the directory doesn' | ||
+ | ** | ||
+ | Conditions : | ||
+ | |||
+ | Tout au long du script, les conditions sont utilisées pour naviguer dans les différentes branches du dossier. Elles sont utilisées dans les instructions if, while, et for. | ||
+ | |||
+ | 16. if [-n " | ||
+ | |||
+ | Cette instruction if vérifie si l' | ||
+ | |||
+ | 23. if [-z " | ||
+ | |||
+ | C'est l' | ||
+ | |||
+ | 28. if [ ! -d $XDG_DATA_HOME/ | ||
+ | |||
+ | Cette comparaison vérifie si le répertoire n' | ||
+ | |||
+ | ** | ||
39. while [ -n " | 39. while [ -n " | ||
Ligne 46: | Ligne 90: | ||
Usually -s is used to check if a file exists and is not empty. Since we're negating it (the “!”), we are actually checking to see if the file is empty, i.e. if the questions within the category are exhausted. If it is, then the next step is to re-populate the file. | Usually -s is used to check if a file exists and is not empty. Since we're negating it (the “!”), we are actually checking to see if the file is empty, i.e. if the questions within the category are exhausted. If it is, then the next step is to re-populate the file. | ||
+ | ** | ||
+ | 39. while [ -n " | ||
+ | |||
+ | Ici, nous utilisons la condition que nous avons utilisée à la ligne 16, mais dans une instruction while. Cela signifie que la boucle va continuer de tourner jusqu' | ||
+ | |||
+ | 42. if [ " | ||
+ | |||
+ | Il s'agit d'une simple comparaison de chaînes, où nous vérifions si l' | ||
+ | |||
+ | 48. if [ ! -s " | ||
+ | |||
+ | Habituellement -s est utilisé pour vérifier si un fichier existe et n'est pas vide. Puisque nous prenons le contraire (le « ! »), nous vérifions en fait si le fichier est vide, c' | ||
+ | |||
+ | |||
+ | ** | ||
Shuf: | Shuf: | ||
Ligne 62: | Ligne 121: | ||
This is the same as in line 33, as it is simply replenishing the exhausted category. | This is the same as in line 33, as it is simply replenishing the exhausted category. | ||
+ | ** | ||
+ | Shuf: | ||
+ | |||
+ | Shuf est un programme inclus dans le paquet coreutils et crée des permutations (variations) des lignes dans un fichier. Il est utilisé comme suit dans le script (les numéros avant les commandes sont les numéros de ligne) : | ||
+ | |||
+ | 33. shuf -o " | ||
+ | |||
+ | Dans ce cas, shuf prend le contenu du fichier (dont le nom est enregistré dans la variable « category »), crée une permutation, | ||
+ | |||
+ | 44. `shuf -n 1 -e *` | ||
+ | |||
+ | Dans ce cas, shuf affiche seulement la première ligne de la permutation (« -n 1 ») et accepte comme argument le contenu du fichier (« -e »). Cela signifie qu'il prend la liste des catégories, | ||
+ | |||
+ | 50. shuf -o " | ||
+ | |||
+ | C'est la même chose qu'à la ligne 33, car il remplit tout simplement la catégorie épuisée. | ||
+ | |||
+ | ** | ||
Zenity: | Zenity: | ||
Ligne 70: | Ligne 147: | ||
This creates a GTK window with a radio list, using the token.png file as the window icon. It also includes the window title, the text (outside of the radio button), and offers some configuration (such as geometry). The radio buttons are populated by piping the output of ls -1 through sed and then zenity. Sed is used to format the ls output so that Zenity can use it. It should be noted that Zenity expects each string to be preceded by a TRUE or FALSE, where it denotes which string is the default choice (the line marked TRUE). | This creates a GTK window with a radio list, using the token.png file as the window icon. It also includes the window title, the text (outside of the radio button), and offers some configuration (such as geometry). The radio buttons are populated by piping the output of ls -1 through sed and then zenity. Sed is used to format the ls output so that Zenity can use it. It should be noted that Zenity expects each string to be preceded by a TRUE or FALSE, where it denotes which string is the default choice (the line marked TRUE). | ||
+ | ** | ||
+ | |||
+ | Zenity : | ||
+ | |||
+ | « Zenity est un programme qui affiche des boîtes de dialogues de type GTK+ et qui retourne un code (soit par retour dans le script, soit à l' | ||
+ | |||
+ | 11. zenity --list --radiolist --window-icon=../ | ||
+ | |||
+ | Ceci crée une fenêtre GTK avec une liste de boutons « radio », en utilisant le fichier token.png comme icône de fenêtre. Il comprend également le titre de la fenêtre, le texte (en dehors du bouton radio) et offre quelques configurations (comme la géométrie). Les boutons radio sont labellisés en redirigeant la sortie de ls -1 à sed, puis à Zenity. Sed est utilisé pour formater la sortie ls de sorte que Zenity puisse l' | ||
+ | ** | ||
51, zenity --info --window-icon=../ | 51, zenity --info --window-icon=../ | ||
Ligne 84: | Ligne 171: | ||
For a better introduction to Zenity, you can check out my article in FCM#46. | For a better introduction to Zenity, you can check out my article in FCM#46. | ||
+ | ** | ||
+ | 51. zenity --info --window-icon=../ | ||
+ | |||
+ | C'est la fenêtre qui informe l' | ||
+ | |||
+ | 60. zenity --progress --window-icon=../ | ||
+ | |||
+ | Dans cet exemple, Zenity crée une barre de progression (en utilisant une boucle for pour parcourir un pourcentage de temps entre la question et la réponse, définie plus tôt dans le script). Le pourcentage de la barre de progression est lu à travers l' | ||
+ | |||
+ | 64. zenity --info --window-icon=../ | ||
+ | |||
+ | Une fois que la barre de progression a atteint 100 % et que l' | ||
+ | |||
+ | Pour une meilleure introduction à Zenity, vous pouvez consulter mon article dans le FCM n° 46. | ||
+ | |||
+ | |||
+ | ** | ||
Sed: | Sed: | ||
Ligne 96: | Ligne 200: | ||
Here, sed edits the list of questions in-place (“-i”) and simply removes the first line of the file, thereby effectively removing the question that was just asked. | Here, sed edits the list of questions in-place (“-i”) and simply removes the first line of the file, thereby effectively removing the question that was just asked. | ||
+ | ** | ||
+ | Sed : | ||
+ | |||
+ | Sed est une commande qui vous permet d' | ||
+ | |||
+ | 11. sed iFALSE | ||
+ | |||
+ | Ceci est utilisé après la commande « ls -1 », et insère (d'où le «i») le mot « FALSE » (faux) devant chaque ligne, de sorte que Zenity peut formater correctement les données dans la liste des boutons radio. | ||
+ | |||
+ | 62. sed -i 1d " | ||
+ | |||
+ | Ici, sed modifie la liste des questions sur place (« -i ») et supprime tout simplement la première ligne du fichier, retirant ainsi la question qui vient d' | ||
+ | |||
+ | ** | ||
How do I add categories? | How do I add categories? | ||
Ligne 117: | Ligne 235: | ||
• info sed | • info sed | ||
+ | ** | ||
+ | |||
+ | Comment puis-je ajouter des catégories? | ||
+ | |||
+ | Vous pouvez ajouter des catégories à l'aide de LibreOffice Calc (ou tout autre programme qui peut créer des fichiers CSV (Comma Separated Values [Ndt : dont les champs sont séparés par des virgules]). Au lieu de virgules, une tabulation devrait être utilisée comme séparateur et rien d' | ||
+ | |||
+ | J' | ||
+ | |||
+ | Pour aller plus loin : | ||
+ | |||
+ | • « Linux Shell Scripting avec Bash », Ken Burtch O. (Developer' | ||
+ | |||
+ | • Les pages de manuel correspondantes. | ||
+ | |||
+ | • Le FCM n° 46 (pour Zenity). | ||
+ | |||
+ | • info coreutils « test invocation ». | ||
+ | |||
+ | • info coreutils « shuf ». | ||
+ | |||
+ | • info sed. | ||
+ | |||
+ |
issue58/c_c.1331040519.txt.gz · Dernière modification : 2012/03/06 14:28 de auntiee