• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/14

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

14 Cards in this Set

  • Front
  • Back
Which metacharacter is used to pipe stdout from one commandto stdin of another?
|
example,
# ls -l | more
Which metacharacter is used to obtain stdin in from a file?
<
example,
# tr r R < file-data
Which metacharater is used to redirect stdout to a file instead of the screen?
>
example,
# cat /etc/passwd > mydata
Command used to create shortcuts for longer command strings.
alias
Command used to display environment variables?
echo
example,
# echo $PATH
Command used to display a list of exported variables present in the current shell.
env
Command used to send variables to subshells.
export
Command used to search text files for string patterns of characters.
grep
Command used to view all variables in the shell.
set
Command used to sort lines within a file.
sort
Command used to take input from stdin and send to both stdout and a file.
tee
Command used to transform or change characters received from stdin.
tr
Command used to count the number of lines, characters or words within a file.
wc
Command used to number lines within a file.
nl