@@ -1638,7 +1638,7 @@ \subsection{Searching}
1638
1638
# Delete empty directories within 'doc' directory
1639
1639
find doc/ -type d -empty -execdir rmdir '{}' \;
1640
1640
# Copy all *.sh files from /home to ~/scripts
1641
- find /home -name "*.sh" -exec cp '{}' ~/scripts/
1641
+ find /home -name "*.sh" -exec cp '{}' ~/scripts/ \;
1642
1642
# Search for file long_text.txt (exact name) in your home directory
1643
1643
find ~ -name long_text.txt -type f -print
1644
1644
# Find in current directory files from 1 to 100 MB
@@ -2848,8 +2848,8 @@ \subsection{AWK}
2848
2848
# Precede each line by its line number for all files together, with TAB
2849
2849
# (i.e. print line number (NR) and then whole original line ($ 0 ))
2850
2850
awk '{print NR "\t" $ 0 }' diff_test_file_*
2851
- # Substitute "a" with "XXX" ONLY for lines which contain "The "
2852
- awk '/The /{gsub(/a/, "XXX" )}; 1 ' diff_test_file_1 .txt
2851
+ # Substitute "a" with "XXX" ONLY for lines which contain "the "
2852
+ awk '/the /{gsub(/a/, "XXX" )}; 1 ' diff_test_file_1 .txt
2853
2853
\end {bashcode}
2854
2854
\end {frame}
2855
2855
@@ -4233,7 +4233,7 @@ \subsection{Packages}
4233
4233
\item Package name \texttt {*.rpm }
4234
4234
\item \texttt {dnf install \textit {package } } --- install \textit {package }
4235
4235
\item \texttt {dnf remove \textit {package } } --- remove \textit {package }
4236
- \item \texttt {dbf check-update } --- refresh repositories, check for updates
4236
+ \item \texttt {dnf check-update } --- refresh repositories, check for updates
4237
4237
\item \texttt {dnf upgrade } --- upgrade packages
4238
4238
\item \texttt {dnf search \textit {term } } --- search \textit {term }
4239
4239
\item \texttt {dnf autoremove } --- clear packages
0 commit comments