I need some help< I keep getting this wrong and don’t understand why
2. 5. Challenge
Children files
Let’s test your file creation skills.
Make sure you are on the ~/workspace directory and:
1.Create the following files. Try creating them directly from the ~/workspace directory, all at once:
test-website/index.html
test-website/.website-config
test-website/css/styles.css
test-website/img/logo.png
test-website/js/scripts.js
2.From your ~/workspace directory, list the test-website/css directory content including hidden files
3.Clear the terminal screen
Once you have completed these tasks press the Check It button to have your solution assessed.
Check It!
LAST RUN on 5/20/2019 9:07:38 AM
[Missing] Task 1. Expected: /home/codio/workspace/test-website

Commands Used
mkdir -> creates the folder with given name
touch -> creates the files with given name
ls -> list all the files in given directory , if nothing is given defaultly it takes current directory
-a -> argument for ls , (ls -a ) with includes hidden folder too in the listing
clear -> clear the screen (# Here i just typed the clear , I didn't pressed Enter , If Pressed it clear enverything on scree)

I need some help< I keep getting this wrong and don’t understand why 2. 5. Challenge Children files Let’s test your file creation skills. Make sure you are on the ~/workspace directory and: 1.Creat...