Creating Files and Directories

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/7

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:28 PM on 5/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

8 Terms

1
New cards
<p>Stands for <strong>make directory</strong>. It is a Linux command used to create new directories. A directory is a container used to organize files and other directories within the filesystem.</p>

Stands for make directory. It is a Linux command used to create new directories. A directory is a container used to organize files and other directories within the filesystem.

mkdir

2
New cards

Is a Linux command used to create an empty file or update the timestamps of an existing file. If the file does not exist, ___ creates it as a new empty file. If the file already exists, ___ updates the file’s timestamps without changing its contents.

touch

<p>touch</p>
3
New cards

___ is a terminal-based text editor used to create, view, and edit text files directly from the Linux command line. It is designed to be simple and beginner-friendly compared to more advanced editors such as vim or emacs.

nano

<p>nano</p>
4
New cards

Creates parent directories if they do not already exist.

mkdir -p

<p>mkdir -p</p>
5
New cards

Displays a message for each directory created.

mkdir -v

<p>mkdir -v</p>
6
New cards

___ mode shows the actions performed by the mkdir command instead of running silently.

Verbose

7
New cards

Updates timestamps only if the file already exists.

touch -c

<p>touch -c</p>
8
New cards

A ___ in Linux is a file or directory whose name begins with a period (.) character. Hidden files are normally not displayed by the default ls command.

hidden file

<p>hidden file</p>