Code Monkey home page Code Monkey logo

Comments (7)

iamleot avatar iamleot commented on July 30, 2024

Hello @exitnode !
We use the same workaround for the time/todotxt pkgsrc package (and the following sed(1) incantation does the trick!: sed -E -e 's,([(| ])sed ,\1gsed ,g)

What about introducing a ${SED} variable and replace all sed invocations with that?

(If that sounds reasonable please let me know and I'll try to write a possible patch about that!)

Thank you!

from todo.txt-cli.

inkarkat avatar inkarkat commented on July 30, 2024

What about introducing a ${SED} variable

You don't need that.

let the user define which sed version to use, e.g. in .todo/config

You can define a sed function in the config file and export it; todo.sh and any add-ons launched by it will then use that one:

export originalSed=$(which sed)
sed()
{
    # Assumption: The in-place option is passed as the first argument.
    if [ "$1" = '-i.bak' ]; then
        shift

        # Assumption: Only a single file is processed, and it is passed as the
        # last argument.
        file=${!#}

        tmpFile=/tmp/todo.sh-sed.$$
        "$originalSed" "$@" > "$tmpFile" && mv "$tmpFile" "$file"
    else
        "$originalSed" "$@"
    fi
}
export -f sed

This one emulates the sed -i without requiring gsed. If you have the latter, the override becomes even simpler:

sed()
{
    # Use gsed because it understands the -i in-place option.
    gsed "$@"
}
export -f sed

from todo.txt-cli.

karbassi avatar karbassi commented on July 30, 2024

@inkarkat should we include this in the documentation somewhere?

from todo.txt-cli.

iamleot avatar iamleot commented on July 30, 2024

from todo.txt-cli.

inkarkat avatar inkarkat commented on July 30, 2024

@karbassi I think this is only the first or maybe second time this came up. BSD isn't a terribly common platform, and most users are quite knowledgeable (and quite used to dealing with these compatibility issues). I'd wait until we see another such question, and now this should be more discoverable through this issue.

@iamleot Are you really using BSD as your sole platform and intend to do todo.sh dev work? I once used FreeBSD to verify the compatibility with Mac OS (don't have any Apple hardware, and Gina always tested on Mac) - fortunately, Mac OS has suitable sed and awk versions. The (huge) downside of @SED@ is that one is forced to run make; the script won't work without it any longer. Second: If you automate this, do you assume gsed is available, or even implement both gsed and the other workaround?! To me, this adds a lot of complexity without much benefit.

from todo.txt-cli.

iamleot avatar iamleot commented on July 30, 2024

from todo.txt-cli.

hyperupcall avatar hyperupcall commented on July 30, 2024

I created a linked PR that solves this, but it does not export the function for use by add-ons. This is because the new sed function's carries assumptions that may not remain true in all add-on code. Therefore, the scope of this fix includes code within this file's todo.sh only, which is probably good enough anyways.

from todo.txt-cli.

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.