ttgrules
ttgrules

Reputation: 21

Stop bash echoing command text

I have been given a personal profile on a linux project server running bash 3.2.15. Every time I run a command it echoes the text of the command to screen. This isn't a serious issue, but it bugs the crap out of me. I can't find any specific command in .profile or .bashrc that sets this up, and everything I find through google is how to enable it. Not how to disable it. Anybody got any ideas?

Upvotes: 2

Views: 3741

Answers (1)

Tom Fenech
Tom Fenech

Reputation: 74595

It sounds like debugging has been enabled (using set -x). You can disable it using set +x.

Upvotes: 5

Related Questions