Giter Club home page Giter Club logo

Comments (5)

omer-cider avatar omer-cider commented on May 20, 2024

Hi @v3nd1g0, welcome and great to see you like to lab!
This shouldn't be a mistake, and it works for me. Have you tried running this command on this file and see what it returns?
Also, have you tried following the hints or solution and see if it works for you?

from cicd-goat.

 avatar commented on May 20, 2024

Hi @omer-cider. Thank you for your reply.
I have tested this expression in zshrc in such conditions:

  • empty version file
$ > ./version
$ if [ $(wc -l <version) -eq 0 -a $(grep -Po "^\\d{1,2}\\.\\d{1,2}\\.\\d{1,2}$" version) ] ; then check2=true; else check2=false; fi && echo $check2
false
  • version file with 1.0.13 (grep pattern ok)
$ echo "1.0.13" > ./version 
$ if [ $(wc -l <version) -eq 0 -a $(grep -Po "^\\d{1,2}\\.\\d{1,2}\\.\\d{1,2}$" version) ] ; then check2=true; else check2=false; fi && echo $check2
false
  • version file with 100.1000.1000 (grep pattern no ok)
$ echo "1.100.100" > ./version 
$ if [ $(wc -l <version) -eq 0 -a $(grep -Po "^\\d{1,2}\\.\\d{1,2}\\.\\d{1,2}$" version) ] ; then check2=true; else check2=false; fi && echo $check2
false

In each case I have reached check2 == false.

What am I missing?
Thank you in advance.

P.S. I have checked writeup, but it doesn't work for me :c

from cicd-goat.

omer-cider avatar omer-cider commented on May 20, 2024

Hi @v3nd1g0, wc -l <version counts the number of newlines. If you'll make sure to remove any \ns from the version file, the command will return true.

from cicd-goat.

 avatar commented on May 20, 2024

Thank you, you are right!

from cicd-goat.

omer-cider avatar omer-cider commented on May 20, 2024

Awesome, have fun!

from cicd-goat.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.