cnrtl dictionnaire - retour accueil
git clone git://bebou.netlib.re/cnrtl
Log | Files | Refs |
commit 18145762391f6f7c402d4c821bbd2ea63f719a08 parent c0290dce3c29337666e4db47a9dc247ba3763a66 Auteurice: clemtre <contact@martinlemaire.fr> Date: Wed, 12 Mar 2025 11:09:31 +0100 qu'en penses-tu Diffstat:
A | cnrtl-jeff | | | 28 | ++++++++++++++++++++++++++++ |
1 file changed, 28 insertions(+), 0 deletions(-)
diff --git a/cnrtl-jeff b/cnrtl-jeff @@ -0,0 +1,28 @@ +#!/bin/sh + +archive=$HOME/archive/cnrtl + +if test -z "$1"; then + recherche=$(ls $archive | dmenu -l 30 $DMENU_STYLE) +else + recherche="$1" +fi + +if test -f $archive/$recherche; then + lynx -dump $archive/$recherche +else + lynx -dump https://cnrtl.fr/definition/$recherche | + grep -v Valid | + sed -n '/Entrez une forme/,/2012 - CNRTL/ p' | + tail -n+4 | sed -n '2,$ p' | + sed -e "s/♦/\n♦/g" \ + -e "s/[A-Za-z]\. -/&/g" \ + -e "s/\^1/¹/g" \ + -e "s/\^2/²/g" \ + -e "s/\^3/3/g" \ + -e "s/\^4/⁴/g" \ + -e "s/\^5/⁵/g" \ + > $archive/$recherche +fi + +cat "$archive/$recherche"