• Directory structure

    Directory structure

    You probably know the feeling: your documents in the “Documents” folder are almost completely mixed up. I recognize this too. Every time I try to tidy up, I end up with folders labeled “to sort”, “miscellaneous” and “archive” filled with everything I don’t know where to put. But what is a good folder structure? I…

  • Make directories with mkdir and remove them with rm -r

    Make directories with mkdir and remove them with rm -r

    Notice that Linux is case sensitive. If you need to make a directory named Work, notice that’s a different directory as work. mkdir Workmkdir work They are two different directories.Also you can write multiple directories after one mkdir. mkdir Work work With ls (list) you can view the content of a directory. If there is…