Learn-the-command-line, projects, artusi

Welcome to the Get Help category!
Please can someone tell me how to access the file system for the Artusi exercise ? And please I need some help with step 23:
Artusi
This command is supposed to remove the file “earthenware.txt” from the current directory which is “ceramic” directory. But is does not work.
This is where you can ask questions about your code. Some important things to remember when posting in this category :slight_smile:

  • Learn how to ask a good question and get a good answer!
  • Remember to include a link to the exercise you need help with!
  • If someone answers your question, please mark their response as a solution :white_check_mark:
  • Once you understand a new concept, come back and try to help someone else!

https://www.codecademy.com/courses/learn-the-command-line/projects/artusi

Check to make sure that you’re in the correct directory. (I can’t tell bc all of your code isn’t posted).

**Remember, you can always run a pwd command to verify what dir you’re in.

Should be something like:

Summary
 pwd
/home/ccuser/workspace/artusi
$ ls -a
.  ..  drawing  painting  sculpting
$ ls -alt
total 0
drwxr-xr-x 5 ccuser ccuser 54 Aug 24 11:41 .
drwxr-xr-x 1 ccuser ccuser 20 Aug 24 11:41 ..
drwxr-xr-x 4 ccuser ccuser 37 Mar  5  2016 drawing
drwxr-xr-x 4 ccuser ccuser 34 Mar  5  2016 painting
drwxr-xr-x 3 ccuser ccuser 18 Mar  5  2016 sculpting
$ cd sculpting
$ pwd
/home/ccuser/workspace/artusi/sculpting
$ ls -a
.  ..  clay
$ cd clay
$ ls
ceramic  dough  polymer
$ cd ceramic
$ ls
airdry.txt  earthenware.txt  stoneware.txt
$ rm earthenware.txt
$ ls
airdry.txt  stoneware.txt
$ 

Thanks for your help, but I am in the correct directory I did not post the full code because each time I leave or refresh my browser the code disappears!!.

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.