From 0456bc5b5d2472f8295d01cb7687627c9daa461f Mon Sep 17 00:00:00 2001 From: miguel Date: Tue, 27 Dec 2022 17:01:29 +0000 Subject: [PATCH] feat(append-output): add subject, test and solution for the exercise --- sh/tests/append-output/songs.txt | 55 +++++++++++++++++++++ sh/tests/append-output_test.sh | 21 ++++++++ sh/tests/solutions/append-output.sh | 2 + subjects/devops/append-output/README.md | 66 +++++++++++++++++++++++++ 4 files changed, 144 insertions(+) create mode 100644 sh/tests/append-output/songs.txt create mode 100755 sh/tests/append-output_test.sh create mode 100755 sh/tests/solutions/append-output.sh create mode 100644 subjects/devops/append-output/README.md diff --git a/sh/tests/append-output/songs.txt b/sh/tests/append-output/songs.txt new file mode 100644 index 00000000..25d3fcea --- /dev/null +++ b/sh/tests/append-output/songs.txt @@ -0,0 +1,55 @@ +"Breathe" - Faith Hill +"It Wasn't Me" - Shaggy featuring Ricardo "RikRok" Ducent +"Hanging by a Moment" - Lifehouse +"Shape of My Heart" - Backstreet Boys +"Thank You" - Dido +"I'm Like a Bird" - Nelly Furtado +"Family Affair" - Mary J. Blige +"Fallin'" - Alicia Keys +"All for You" - Janet Jackson +"I Wanna Know" - Joe +"U Remind Me" - Usher +"U Got It Bad" - Usher +"I'm a Believer" - Smash Mouth +"Get the Party Started" - Pink +"Wherever You Will Go" - The Calling +"In the End" - Linkin Park +"Loser" - Beck +"Get Ur Freak On" - Missy Elliott +"I'm Real" - Jennifer Lopez +"Butterfly" - Crazy Town +"Crawling" - Linkin Park +"I'm a Slave 4 U" - Britney Spears +"Elevation" - U2 +"Lady Marmalade" - Christina Aguilera, Lil' Kim, Mya, Pink +"Play" - Jennifer Lopez +"I'm Just a Kid" - Simple Plan +"Imitation of Life" - R.E.M. +"Big Pimpin'" - Jay-Z +"Stutter" - Joe featuring Mystikal +"I Wish" - R. Kelly +"This Is the Night" - Clay Aiken +"Hella Good" - No Doubt +"I Know" - Dionne Farris +"I'll Be Missing You" - Puff Daddy and Faith Evans featuring 112 +"I Try" - Macy Gray +"Thong Song" - Sisqo +"Survivor" - Destiny's Child +"I Want It That Way" - Backstreet Boys +"Bad Day" - Daniel Powter +"I'm Like a Bird" - Nelly Furtado +"I Need to Know" - Marc Anthony +"Follow Me" - Uncle Kracker +"Hemorrhage (In My Hands)" - Fuel +"Soak Up the Sun" - Sheryl Crow +"I Hope You Dance" - Lee Ann Womack +"Can't Get You Out of My Head" - Kylie Minogue +"I Just Wanna Love U (Give It 2 Me)" - Jay-Z +"My Love Is Your Love" - Whitney Houston +"Bounce with Me" - Lil' Bow Wow +"Where the Party At" - Jagged Edge +"I'm Already There" - Lonestar +"I Don't Want to Miss a Thing" - Aerosmith +"If You Could Read My Mind" - Stars on 54 +"My Way" - Usher +"Always on Time" - Ja Rule featuring Ashanti \ No newline at end of file diff --git a/sh/tests/append-output_test.sh b/sh/tests/append-output_test.sh new file mode 100755 index 00000000..c009c943 --- /dev/null +++ b/sh/tests/append-output_test.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +# Unofficial Bash Strict Mode +set -euo pipefail +IFS=' +' + +cd append-output +# reset the files. +if [ -f results.txt ]; then + rm results.txt + rm solution.txt +fi + +# add the top two songs to the file as they are not asked. +cat songs.txt | grep "Linkin" >>results.txt + +submitted=$(bash ../student/append-output.sh) +expected=$(bash ../solutions/append-output.sh) + +diff <(cat results.txt) <(cat solution.txt) diff --git a/sh/tests/solutions/append-output.sh b/sh/tests/solutions/append-output.sh new file mode 100755 index 00000000..d8e5f355 --- /dev/null +++ b/sh/tests/solutions/append-output.sh @@ -0,0 +1,2 @@ +cat songs.txt | grep "Linkin" >>solution.txt +cat songs.txt | grep "\- J" >>solution.txt diff --git a/subjects/devops/append-output/README.md b/subjects/devops/append-output/README.md new file mode 100644 index 00000000..62382678 --- /dev/null +++ b/subjects/devops/append-output/README.md @@ -0,0 +1,66 @@ +## append-output + +### Instructions + +Create a file `append-output.sh` that will get the output of a file and parse it, and then write it to a file with a specific format using a single command. + +Get the content of the `songs.txt`, parse it with the `grep` command to filter the file in order to get all the songs from the artist whose names start with `J`, and write the output to the existing file `results.txt`, check the example bellow: + +### Usage + +```console +$ ls +songs.txt result.txt +$ cat songs.txt +"Breathe" - Faith Hill +"It Wasn't Me" - Shaggy featuring Ricardo "RikRok" Ducent +"Hanging by a Moment" - Lifehouse +... +"Bounce with Me" - Lil' Bow Wow +"Where the Party At" - Jagged Edge +"I'm Already There" - Lonestar +"I Don't Want to Miss a Thing" - Aerosmith +"If You Could Read My Mind" - Stars on 54 +"My Way" - Usher +"Always on Time" - Ja Rule featuring Ashanti +$ cat results.txt +"In the End" - Linkin Park +"Crawling" - Linkin Park +"Elevation" - U2 +"Get the Party Started" - Pink +"Lady Marmalade" - Christina Aguilera, Lil' Kim, Mya, Pink +$ +``` + +Expected output: + +```console +$ ./append-output.sh +$ cat result.txt +"In the End" - Linkin Park +"Crawling" - Linkin Park +"Elevation" - U2 +"Get the Party Started" - Pink +"Lady Marmalade" - Christina Aguilera, Lil' Kim, Mya, Pink +"All for You" - Janet Jackson +"I Wanna Know" - Joe +"I'm Real" - Jennifer Lopez +"Play" - Jennifer Lopez +"Big Pimpin'" - Jay-Z +"Stutter" - Joe featuring Mystikal +"I Just Wanna Love U (Give It 2 Me)" - Jay-Z +"Where the Party At" - Jagged Edge +"Always on Time" - Ja Rule featuring Ashanti +$ +``` + +### Hints + +To add the output to a file with a specific format, you can use the >> operator to redirect the output of the command to a file, like this: + +command1 | command2 >> output_file + +Here, command1 is the command that generates the output you want to parse, and command2 is the command that parses the output. The output of command2 will be redirected to the file output_file using the >> operator. If the file output_file already has some content inside, the file operator >> command will append to that file, unlike the > which will delete the content inside. + +> You have to use Man or Google to know more about commands flags, in order to solve this exercise! +> Google and Man will be your friends!