Create the test_files directory inside /tmp with mkdir /tmp/test_files
test_files
/tmp
mkdir /tmp/test_files
Navigate into the directory recently created with cd /tmp/test_files
cd /tmp/test_files
Create six files to test with for [0..5] in i; touch test$i.txt
for [0..5] in i; touch test$i.txt
Create more files with touch test6.txt && touch test66.txt
touch test6.txt && touch test66.txt
Back to Managing Files
Last updated 7 years ago