Login using Social Account
     Continue with GoogleLogin using your credentials
The output of a program can be saved to a file:
myprogram > myfile
If myfile
does not exist, it will be created. If it exists it will be overwritten.
Please follow these steps:
Run the following command to save the output of echo
to a file:
echo "hello" > hello.out
Append world to it:
echo "world" >> hello.out
Check by typing:
cat hello.out
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...