Git Product home page Git Product logo

Comments (6)

jszczerbinsky avatar jszczerbinsky commented on August 24, 2024

Describe a situation, when bug occurs

from ptsh.

jszczerbinsky avatar jszczerbinsky commented on August 24, 2024

Does it happen all the time?

from ptsh.

Jaysce avatar Jaysce commented on August 24, 2024

This issue occurs because macOS ships with an outdated version of bash. Run brew install bash to get the latest version, then you won't get that error.

But you will still get problems running ls and touch, the other commands included with ptsh will run fine.
touch doesn't work because macOS ships with the BSD version of readlink and not the GNU version. You can install the coreutils package using brew install coreutils and then replace readlink with greadlink in the file pttouch, which you can get to via $HOME/.local/bin/pttouch. Replace readlink with greadlink on line 29.

For the ls command it only displays the file icon for some reason. I haven't figured out how to fix it yet. Here is an image of what it currently shows:
Screen Shot 2021-05-14 at 4 08 22 am

See comment below

from ptsh.

jszczerbinsky avatar jszczerbinsky commented on August 24, 2024

ls probably writes something to stderr, but stderr is disabled.
Remove 2>/dev/null from line 14 and 43 in ptls and show the output.

from ptsh.

jszczerbinsky avatar jszczerbinsky commented on August 24, 2024

I think it's problem with --group-directories-first in line 43

from ptsh.

Jaysce avatar Jaysce commented on August 24, 2024

I just checked and its simply because macOS doesn't use GNU core utils, so there are some commands that don't work. The problem with ls was because its using the BSD version of ls which doesn't take in the argument -Q.
So the easiest way to fix this issue is this:

  1. Install latest version of bash using brew install bash
  2. Install core utils using brew install coreutils
  3. Core utils provides the same commands prefixed with a 'g', so to use the GNU variants instead of the BSD variants, you can add the gnubin directory to your path by putting export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH", into your bashrc or zshrc.

Everything should work fine after that. No need to edit any of the ptsh files.

from ptsh.

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.