#!/bin/bash #Change into home/Documents cd ~/Documents #Make a directory called Example and change to it mkdir Example cd Example #Write some text into a file called tmp.txt echo 'The quick brown fox'> tmp.txt #Create some other files touch tmp0.txt tmp1.txt tmp2.txt #Create a few further files touch test.dat text.dat #Put some random data into a final file, exactly 2kb worth head -c 2048 /dev/urandom > data.txt