Giter VIP home page Giter VIP logo

build-your-own-grep's People

Contributors

beplay avatar bert2 avatar lib-martinito avatar libmartinito avatar liolin avatar nikandfor avatar rohitpaulk avatar ryan-gang avatar sreeram-venkitesh avatar thetasinner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

build-your-own-grep's Issues

Shell script does not pass args correctly

The your_grep.sh is not passing arguments with spaces correctly to stack.

Suppose our app is just this little program:

module Main where

import System.Environment

main :: IO ()
main = do
  args <- getArgs
  putStrLn $ show args

With the current your_grep.sh we'll get the following output:

> ./your_grep.sh -E "b r"
["-E","b","r"]

If we change your_grep.sh from...

exec stack run --silent -- $@

...to (note the double quotes)...

exec stack run --silent -- "$@"

...then we get something more useful:

> ./your_grep.sh -E "b r"
["-E","b r"]

The current reference solution has a little unwords hack to deal with this after the fact. The above change would not cause the reference solution to fail, though. The unwords call would just be redundant.

@rohitpaulk what do you think?

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.