This is going to my files on the computer, but my teacher is going to need to compile it on his too. Here is the code so far. I am trying to compress three files into one TAR File.
#!/bin/bash
dd if=/dev/zero of=file.txt bs=1701KB count=1
dd if=/dev/zero of=filee.txt bs=1780KB count=1
dd if=/dev/zero of=fileee.txt bs=1800KB count=1
echo 'i dont really care at all about any of this' >> file.txt
echo 'just trying things out for fun' >> filee.txt
echo 'this is really boring i dont like it' >> fileee.txt
tar -czvf archive.tar.gz /home/melwhiteastonia/file.txt /home/melwhiteastonia/filee.txt /home/melwhiteastonia/fileee.txt
gzip -l archive.tar.gz