• 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/18

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;

18 Cards in this Set

  • Front
  • Back
cat
Displays the contents of a file onscreen.

cat /etc/printcap
cd
Changes to a different directory.

cd /usr/share
cp
Copies a file to a new location or file name.

cp report.doc report.backup
file
Displays a description of what a file contains or its purpose.

file /etc/printcap
info
Displays the info page for a given command; similar to a man page.

info ls
less
Displays the contents of a file on-screen, one screenful at a time.

less /etc/termcap
ls
Lists the contents of a directory.

ls -l
man
Displays the manual page (the man page) for a given command.

man slocate
mkdir
Makes (creates) a new directory.

mkdir /tmp/documents
more
Displays the contents of a file onscreen, one screenful at a time.

more /etc/termcap
mv
Renames a file or moves a file to a new location (possibly under a new name).

mv testfile testfile.old
pwd
Displays the current working directory.

pwd
rm
Removes (deletes) a file.

rm report.old
rmdir
Removes (erases) an empty directory.

rmdir /tmp/documents
slocate
Displays matching file and directory names anywhere on the system.

slocate services
touch
Creates a new, empty file, or updates the timestamp of an existing file.

touch test
updatedb
Creates or updates the index of file and directory names used by the slocate command. (must be run as root)

updatedb
zcat
Displays the contents of a compressed file onscreen.

zcat /tmp/report.gz