linux command tutorial

the v in mkdir,rm command for verbose to know what happen
the i in rm for confirmation
for more flags look at the manual (man rm , man mkdir ,etc...)
#!/bin/bash
mkdir -pv ~/skillshare/linux
cd skillshare || exit
touch file.txt
echo "thank u for the tutorial" >file.txt
cat file.txt
cp -v file.txt linux
rm -v file.txt
cd .. || exit
rm -ri skillshare