/ Published in: Bash
                    
                                        The script below looks up its first argument on the LEO German-English dictionary.  It is really just a dump of the rendered result page by `lynx` followed by a grep.  But grep cannot handle the possible umlauts in the result page, so Perl is used for that.  The first paragraph constructs a regular expression which replaces umlauts and their two-character aliases with partial regexes matching anything.  The regex fraction `$onetwo` also matches two arbitrary characters, so it still works if the two-char sequence did not denote an umlaut.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
 #!/bin/sh onetwo='.{1,2}' re="$1" re="${re//[^abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]/.}" re="${re//ue/$onetwo}" re="${re//ae/$onetwo}" re="${re//oe/$onetwo}" re="${re//ss/$onetwo}" # have to use perl for grepping because of umlauts lynx -dump -nolist 'http://dict.leo.org/ende?lp=ende&lang=de&searchLoc=0&cmpType=relaxed§Hdr=on&spellToler=on&search='"$1"'&relink=on' | perl -n -e "print if /$re/i;"
Comments
                    Subscribe to comments
                
                