0
eo2875
3y

Has this ever happened to you?

You open up your text editor and start typing commands. But it tries to turn on your virtual environment or run a script:

& "c:///project/folder/..."

But since you're in the middle of typing your commands, it get's meddled in between and it fails to run the script, so you gotta do it by hand.

git fet & "c:///project/folder/..."

Unrecognized command "get"

Comments
  • 0
    Very interesting! I like it.
  • 0
    Never
  • 1
    You need a good setup that doesn't execute scripts by piping them to a fifo where stdin is also piped at the same time. That's catastrophically bad engineering.
  • 1
    @lbfalvy Exactly! I also agree with you here. Need a good setup before starting working.
  • 0
  • 0
    @andrewethan
    1My editor runs startup command in the background without a possibility to enter something and if i configured it to see the output it doesn't grab the focus.
  • 0
    @andrewethan I mean to say need good understanding before starting any project.
Add Comment