Code Monkey home page Code Monkey logo

Comments (4)

Ferdaszewski avatar Ferdaszewski commented on July 2, 2024

I found a potential solution to this issue. When parsing for the mountpoint, instead of using awk '{print $6}', which splits on spaces, use awk 'BEGIN {FS="[ ]*[0-9]+%?[ ]+"}; {print $6}' which uses a regular expression to split on the size column entries.

When I have some time I'll submit a pull request for this.

Solution modified from this StackOverflow answer.

from nodejs-disks.

steadweb avatar steadweb commented on July 2, 2024

Thanks @Ferdaszewski - I'll test that solution some time this week.

from nodejs-disks.

anesuc avatar anesuc commented on July 2, 2024

By the way, this was never fixed. I already fixed this on my local system, came here to point this out, turns out someone already did 3 years ago haha. It would be great if you guys fix this so that we can use official unmodified modules without too many issues in case someone replaces all the modules installed

from nodejs-disks.

anesuc avatar anesuc commented on July 2, 2024

I would like to add that I just tried @Ferdaszewski 's code and it caused issues with my "/" partition. Didn't really bother to investigate since it's part of a larger piece of code, but the one I have that has been working so far for me is this:

'df | grep ' + drive + ' | awk '{for (i=1;i<=5;i++){$i=""};print}''

Edit:
Github comments doesn't like escape characters, so removed them. Just add them bak ofcause

from nodejs-disks.

Related Issues (5)

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.