Skip to content

Instantly share code, notes, and snippets.

@LeetIDA
Created September 30, 2024 02:53
Show Gist options
  • Save LeetIDA/a92a13433f949bb18155da67889cd24a to your computer and use it in GitHub Desktop.
Save LeetIDA/a92a13433f949bb18155da67889cd24a to your computer and use it in GitHub Desktop.
Lab2B - The Linux File System
#!/bin/bash
mkdir lab2b
cd lab2b
mkdir -p My_Stuff/Music/{Van\ Morrisson,U2,"Green Day"} My_Stuff/Docs/{ITB5004,ITB5005} My_Stuff/Games/{Tetris,Warcraft} My_Stuff/WMV5001
touch /home/$(whoami)/lab2b/My_Stuff/Music/U2/BeautifulDay.mp3
touch /home/$(whoami)/lab2b/My_Stuff/Music/U2/21_Guns.mp3
touch /home/$(whoami)/lab2b/My_Stuff/Docs/ITB5004/Notes.txt
touch /home/$(whoami)/lab2b/My_Stuff/Docs/ITB5005/Notes.txt
touch /home/$(whoami)/lab2b/My_Stuff/Games/Tetris/HighestScores.txt
touch /home/$(whoami)/lab2b/My_Stuff/Games/Warcraft/CheatCodes.txt
ls -R My_Stuff > /home/$(whoami)/lab2b/My_Stuff/lab2b_q5.txt
mv /home/$(whoami)/lab2b/My_Stuff/WMV5001 /home/$(whoami)/lab2b/My_Stuff/Docs/
mv /home/$(whoami)/lab2b/My_Stuff/Music/U2/21_Guns.mp3 /home/$(whoami)/lab2b/My_Stuff/Music/"Green Day"
rm -r /home/$(whoami)/lab2b/My_Stuff/Music/Van\ Morrisson
rm -r /home/$(whoami)/lab2b/My_Stuff/Games/*
ls -R My_Stuff > /home/$(whoami)/lab2b/My_Stuff/lab2b_q7.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment