Interprete rm, touch, cp. mv Flashcards
What command can be used to get more info about a commend?
man [command]
What is the newline character in Terminal?
/n
What command displays User ID?
echo $UID
What does this command do?
mv
Move or rename a file or directory
What does this command do?
cp
Copy one or more files to a new location
What does this command do?
touch unique-name-file.txt
Creates a new file named unique-name-file.txt
What does this command do?
touch pre-existing-file.txt
update modification time for pre-existing-file.txt
What does this command do?
touch
Create a new file or update modification time if a file with that name exists
What does this command do?
rm
Remove one or more files
if executed with -d option it can remove directories
what command displays a directory and its sub-directories in a pretty graphical format in the Terminal?
tree
what command displays the currently running system processes?
top