Git Product home page Git Product logo

Comments (5)

brandonweeks avatar brandonweeks commented on July 24, 2024

I added this functionality in #35.

from bash-preexec.

rcaloras avatar rcaloras commented on July 24, 2024

@frozenminds thanks for opening. I'm not positive off hand how you'd do this, but @brandonweeks might have some idea. Perhaps via extdebug as was mentioned in the previous PR.

from bash-preexec.

richard-scott avatar richard-scott commented on July 24, 2024

Maybe this will help:

$ source ~/.bash-preexec.sh
$ precmd() { echo "printing the prompt"; }
$ preexec() { if [[ $SKIP = "true" ]]; then return 1; fi; }
printing the prompt
$ shopt -s extdebug
printing the prompt
$ echo 1
1
printing the prompt
$ SKIP=true
printing the prompt
$ echo 1
printing the prompt
$

from bash-preexec.

richard-scott avatar richard-scott commented on July 24, 2024

LOL looking back, that may be a bad example as it then renders that bash session useless as you can't unset SKIP to be false ;-(

Using this may be better as an example:

source ~/.bash-preexec.sh
preexec() { if echo "$1" | egrep -q "^ls$" ; then return 1 ; fi ; }
shopt -s extdebug
ls -al
ls

This disables the "ls" command, but allows "ls -al" to work.

from bash-preexec.

rcaloras avatar rcaloras commented on July 24, 2024

@richard-scott Thanks for the example! 👍
@frozenminds going to close this out as Rich's example looks sufficient. Feel free to reopen or start a new issue if you have any other questions/problems.

from bash-preexec.

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.