Summaries/Courses/Linux_and_Bash_for_Data_Engineering/and.sh

10 lines
126 B
Bash
Raw Normal View History

2023-05-11 22:44:49 +02:00
#!/usr/bin/env bash
touch one.txt \
&& touch two.txt \
&& touch three.txt
ls *.txt | wc -l
rm one.txt two.txt three.txt