Trouble with terminal -- solved

as per instructions with the terminal segment i’m trying to make a directory like so $ mkdir i/like/icecream but terminal just says that no such file or directory exists. help?

–solved

Hello @sigurduraron.

Try this:

mkdir -p i/like/icecream 

This works in Linux and Mac terminal.

1 Like