In this step, we will use several basic CloudShell commands that are commonly used in Cloud Journey lab exercises.
pwd command to view the current working directory path.
To view files and directories along with the permissions of the user and group for each, enter the command ls -la.
Here you will see the rwx permissions, where r=read, w=write, and x=execute.
Each group of 3 characters represents the permissions of the user - group user - other user respectively.
(Open the image in a new tab if it is not clearly visible.)

Now we will create a directory, create a file, edit it, and read its content.
mkdir project to create a directory.cd project.touch test.txt.vi test.txt, then press i to begin editing the file. Type some content, for example Hello First Cloud AI Journey!. Press ESC and type :wq to save and exit.

cat test.txt.