Red Hat NETSCAPE MANAGEMENT SYSTEM 6.0 - CUSTOMIZATION Instrukcja Użytkownika Strona 276

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 300
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 275
264 Managing Files and Directories
I/O Redirection and Pipes
And dont forget about using pipes and output redirection when you want to store and/or print
information to read at a later time.
You can, for example, use grep to search for particular contents of a le, then have those results
either saved as a le or sent to a printer.
To print the information about references to coffeein sneakers.txt, for example, we just type:
grep coffee sneakers.txt | lpr
This command behaves similar to the command ls -al /etc | more, which you may have used
in Chapter 16 on page 217 to list the contents of the /etc directory then send the results through the
more command for viewing on the screen.
Tip: Remember the distinction of using > and >>:using> will overwrite a le, while
>> appends the information to a le. Usually, unless youre certain you want to, its
safer to use >>,becauseyouwont lose potentially valuable information (though you
may have to edit the le if you didnt want to append information to it).
Wildcards and Regular Expressions
What if you forget the name of the le youre looking for? You cant say to your computer, Find a
le called sneakor sneak-something.
Well, yes you can, in a way. Using wildcards or regular expressions, you can perform actions on a le
or les without knowing the complete lename. Just ll out what you know, then substitute the
remainder with a wildcard.
Tip: To read more about wildcards and regular expressions, take a look at the bash
man page (man bash). Remember that you can save the le to a text le by typing man
bash | col -b > bash.txt. Then, you can open and read the le with less or
pico (pico bash.txt). If you want to print the le, be prepared: Itsquitelong.
We know the les called sneak-something.txt,sojusttype:
ls sneak*.txt
and theres the name of the le:
Przeglądanie stron 275
1 2 ... 271 272 273 274 275 276 277 278 279 280 281 ... 299 300

Komentarze do niniejszej Instrukcji

Brak uwag