1. How can I creat folders in my homedirectory?(byusing mkdir? touch?)
and how can I check files in my homedirectory by using lscommand?
2. How can I change my current directory to folder?(by using cd)
Solution
1. mkdir is used to create directories. Where as touch is used to create files.Command to create folders in my home directory ismkdir ~/newDirCommand check files in my home directory is ls -l2. Command to change my current directory to folder?cd newDir