Command Line Interface/General Info (II) Flashcards
1
Q
What does this mean?
../blue/red.txt
A
Navigate up one level from your current directory to a directory named “blue,” and then navigate to a .txt file named “red”
2
Q
What are two ways to execute a command in the command line?
A
1-type the name of the command:
touch
2-type the full path to the command:
/bin/touch
(for common/installed commands, it isn’t necessary to type out the full path)