Summaries/Courses/Linux_and_Bash_for_Data_Engineering/and.sh
2023-05-11 22:44:49 +02:00

10 lines
126 B
Bash
Executable file

#!/usr/bin/env bash
touch one.txt \
&& touch two.txt \
&& touch three.txt
ls *.txt | wc -l
rm one.txt two.txt three.txt