Summaries/Courses/Linux_and_Bash_for_Data_Eng.../and.sh

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