GithubHelp home page GithubHelp logo

Comments (4)

petero-dk avatar petero-dk commented on August 22, 2024 3

I have this exact problem which really is an issue when running programs on mono (mac or linux)

Right now what I do is run through all arguments before giving them to fluent command line parser and adding: :: if it starts with /, once i get the result back i check for ::/ and remove the ::

Quite a hack!

            for (var i = 0; i < args.Length; i++) 
                if (args[i][0] == '/')
                    args[i] = "::" + args[i];

from fluent-command-line-parser.

siywilliams avatar siywilliams commented on August 22, 2024 1

In v1.5 you will be able to do var fclp = new FluentCommandLineParser().UseOwnOptionPrefix("-", "--"); which will omit the "/" prefix altogether solving this issue.

from fluent-command-line-parser.

siywilliams avatar siywilliams commented on August 22, 2024

Thanks @dpagano

I will have a look and see what can be done about intelligently detecting file paths. Another good thing to add to the library is what you mentioned - optionally disable the "/" prefix altogether.

In the meantime you can use -- to tell the parser that no more options are to follow which will then parse "/Users/fclp/test.txt" correctly.

For example:

myapp.exe --debug --file -- "/Users/fclp/test.txt"
myapp.exe --debug --file -- "/Users/fclp/test.txt" "/Users/fclp/test2.txt "/Users/fclp/tes3.txt"

I hope that works for you in the meantime.

from fluent-command-line-parser.

dpagano avatar dpagano commented on August 22, 2024

Thanks for your answer @siywilliams
Yes, I know about the -- switch. It helps as long as you don't have two options both of which asking for files :) (such as -input -output e.g.)

from fluent-command-line-parser.

Related Issues (20)

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.