Hi Guys,
I haven't gotten my Pi yet because I lost it and I would like your help in checking if I am correct with what the functions do and explain the 3 that I am unsure about.
pwd shows you the current directory (print working directory).
ls will list the contents of the directory.
cd is used to change the directory. For example, cd edward with switch you to a child directory called “Edward” while cd.. returns focus to the parent directory.
mkdir newdir will create a new directory, where “newdir” is the directory label. You can also create a succession of new directories with mkdir -p /home/edward/newdir1/newdir2, where both newdir1 and newdir2 are created, but this will only work with the -p
These 3 I am not sure what they are. It would be appreciated if someone explains what they do.
touch mytext.txt
nano mytext.txt
rm mytext.txt
