All Questions
1 question
16
votes
4
answers
23k
views
How to turn globbing on and off?
Within my ~./bashrc in an alias I have turned of globbing like this.
alias x='set -f;. any.sh'
But which command enables globbing again or should I set this options in any.sh?
Any response is ...