-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdir.tex
31 lines (23 loc) · 823 Bytes
/
mkdir.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
\hrule
\vspace{1mm}
\addcontentsline{toc}{subsection}{mkdir}
\headerline{\large mkdir%
\index{mkdir}%
\index{directory!create|see{mkdir}}}%
{\emph{create a new directory}}{}
\hrule
\vspace{4mm}
\paragraph{Description}
\indentpar \raggedright \textrm{Makes a new directory inside the current directory, or another specified location.}\\
\paragraph{Usage}
\indentpar mkdir \textit{directory}\\
\indentpar mkdir \textit{path/to/dir}
\paragraph{Arguments}
\indentpar \argumentline{directory}{the name of the directory to create}\\
\indentpar \argumentline{path/to/dir}{location in which to create \texttt{dir}}
\paragraph{Useful options}
\indentpar \optionline{-p}{creates any nonexistent parent directories}
\paragraph{Examples}
\indentpar mkdir directory\\
\indentpar mkdir path/to/directory
\vspace{20mm}