• 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
Copy
cp <source> <destination>
Moving files
mv <source> <destination>
Connecting to remote computer
ssh <user>@<host>
tcp
Transfering files to remote computer
rsync source <user>@<host>:destination
scp -r source <user>@<host>:destination
Creating Symlink
ln -s <source> <target symlink>
Making a directory
mkdir <name>
Making a file
touch <name>
Searching within Files
grep <search_term> <location>
Searching for files
find <location> -name <file>
Directory listing
ls
Directory listing with human readable files size
ls -lah
Searching within Files
grep -r "<term>" .
Searching for Files
find <location> -iname <filename>
Manuals for programs
man <program>
eg. man grep