/ Published in: Bash
//for options available, see:
http://www.ss64.com/bash/shopt.html
http://www.ss64.com/bash/shopt.html
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// display all shell options with their status shopt // display only set (on) options shopt -s //display only unset (off) options shopt -u //set (turn on) an option shopt -s foo //unset (turn off) an option shopt -u bar