From e05ecf238f767abb19cdb41826d0c764287e24ce Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 10 Apr 2023 10:40:48 +0300 Subject: [PATCH] docs(plus): create "checkpoint" version of subject --- subjects/devops/plus-checkpoint/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 subjects/devops/plus-checkpoint/README.md diff --git a/subjects/devops/plus-checkpoint/README.md b/subjects/devops/plus-checkpoint/README.md new file mode 100644 index 000000000..95d72cd51 --- /dev/null +++ b/subjects/devops/plus-checkpoint/README.md @@ -0,0 +1,13 @@ +## plus + +### Instructions + +In this exercise, you will make a script `plus.sh` that will take two arguments from the command line, add them and output the result. + +### Usage + +```console +$ ./plus.sh 2 3 +5 +$ +```