Login using Social Account
     Continue with GoogleLogin using your credentials
Create a new file called myemptyfile
in your home directory. You can use:
cd ~
touch myemptyfile
Check its permissions using:
ls -l myemptyfile
cd ~
myemptyfile
doesn't exist, create it using touch myemptyfile
chmod
, give it permissions such that only the Owner of a file should be able to modify. Everyone else (Group and Others) should be able to only read.ls -l myemptyfile
should print something like this:-rw-r--r-- 1 user123 user123 0 Oct 24 07:40 myemptyfile
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...