mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2024-12-25 11:41:16 +07:00
21 lines
468 B
TeX
21 lines
468 B
TeX
|
\section{Bash Light}
|
||
|
|
||
|
\begin{lstlisting}[language=bash, style=customStyleBashLight, caption=Snippet title]
|
||
|
#!/bin/bash
|
||
|
|
||
|
STRING="HELLO WORLD!!!"
|
||
|
echo $STRING
|
||
|
\end{lstlisting}
|
||
|
|
||
|
\section{Bash Dark}
|
||
|
|
||
|
\begin{lstlisting}[language=bash, style=customStyleBashDark, caption=Snippet title]
|
||
|
#!/bin/bash
|
||
|
|
||
|
STRING="HELLO WORLD!!!"
|
||
|
echo $STRING
|
||
|
\end{lstlisting}
|
||
|
|
||
|
\section{Bash Import}
|
||
|
|
||
|
\lstinputlisting[language=bash, style=customStyleBashDark, caption=Snippet title]{\SNIPPETBash}
|