GithubHelp home page GithubHelp logo

Comments (5)

4lex11s avatar 4lex11s commented on June 12, 2024 1

a workaround 🤡

#bash4
declare -A General=([Experimental]=true [KernelExperimental]=true [ControllerMode]=bredr)

for c in "${!General[@]}"; do
    printf  -- "--set  /etc/bluetooth/main.conf  General %s  %s\n" "$c" "${General[$c]}" |xargs -t crudini
done
  # crudini --set /etc/bluetooth/main.conf General KernelExperimental true
  # crudini --set /etc/bluetooth/main.conf General Experimental true
  # crudini --set /etc/bluetooth/main.conf General ControllerMode bredr

(taken from my memory aid ;)

from crudini.

pixelb avatar pixelb commented on June 12, 2024

The --merge functionality may be used to update multiple items at once.
That doesn't cater for delete though

from crudini.

fekir avatar fekir commented on June 12, 2024

Mhm, I thought --merge needed a second file, but I see it's not the case, but

  • as you wrote, it is not possible to remove values
  • it also seems that it is possible to add values only under a given section (granted, in the example I gave I also added values only under a given section)

from crudini.

pixelb avatar pixelb commented on June 12, 2024

workaround is concise, but still inefficient, non atomic.
Still intend to implement support for this

from crudini.

pixelb avatar pixelb commented on June 12, 2024

@fekir one can now do:

crudini --set config_file section parameter1 value \
        --set config_file section parameter2 value \
        --del config_file section parameter3

from crudini.

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.