Tux L i n u x * G u i d e

v o n * I n g o * B l e c h s c h m i d t * ( c ) * 2 0 0 1
Tux
|Home|

|Neue Artikel|

|Index|

|Liste|

|Code-Snippets|

|Links|

|Allgemeines|

|Cool Stuff|
Artikelsuche
Die Jun 19 16:36:00 MEST 2001
Artikel Suchen Index Stichwortliste grep

"In welcher Zeitschrift war der Artikel über die Bash nochmal?" Diese Frage begegnet Ihnen mit diesem Skript nicht mehr.

LinuxGuide Druckbare Version
Man-Page
Sourcecode
Verwandte Artikel:

Wörterbuch
Operationen mit Dateien in Perl
E-Mail-Liste
Webschnapper (2) in Shell-Skript



      .~.   
      /V\   
     // \\  
    /(   )\ 
     ^`~'^  
     


Hosted at Sorceforge.net
No ePATENTS
Viewable With Any Browser
Burn All GIFs!

F
olgendes Shell-Skript schafft Abhilfe:
# artikelsuche.sh
 
#!/bin/bash
# artikelsuche.sh - Ermöglich die Suche nach zuvor eingetippten Sichworten
# (c) by Ingo Blechschmidt,
# Die Jun 19 16:38:25 MEST 2001
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Ingo Blechschmidt
# Arberstraße 5
# 86179 Augsburg
# E-Mail: iblech@web.de, http://www.way.to/uselinux/
# Tel.: +49 / 821 882955
#
# 

if [ "$1" = "--new" ]; then
  read -p "Geben Sie den Namen und Ausgabe der Zeitschrift an, gefolgt von
  einem Trennstrich und den Stichwörtern: "
  echo $REPLY >> ~/.artikelsuche.lst
elif [ "$*" ]; then
  grep "$*" ~/.artikelsuche.lst
else
  echo "$0: Syntax: $0 regexp
  $0 --new"
fi
 
 

Wird das Skript mit dem Parameter --new aufgerufen, erwartet es eine Eingabe in der Form LinuxUser 5/2001 - Spiele Tribes 2 Rune Translate Übersetzen.

Document Informations: Content-Type: text/html; charset=iso-8859-1
Author: Ingo Blechschmidt
Description: LinuxGuide - "In welcher Zeitschrift war der Artikel über die Bash nochmal?" Diese Frage begegnet Ihnen mit diesem Skript nicht mehr.
Keywords: Artikel, Suchen, Index, Stichwortliste, grep, LinuxGuide
Robots: all
Copyright: Copyright (C) 2002 by Ingo Blechschmidt
Date: 2003-06-19T16:36:00+02:00

Stichwortverzeichnis | Neue Artikel | Übersicht | Codesnippets | Links | Copyright | Cool Stuff | Home | Druckbare Version | Manpage | Sourcecode |
Diesen Artikel kritisieren, kommentieren oder ergänzen
Einen Neuen Artikel schreiben

 
This website is distributed under the GNU Free Documentation License .