merged
authorOleksandr Gavenko <gavenkoa@gmail.com>
Mon, 04 Mar 2013 11:00:08 +0200
changeset 621 c26afe3a6d86
parent 619 8080fc135a18 (diff)
parent 620 e752deb194d3 (current diff)
child 622 f5b9226c2e4a
merged
--- a/.bashrc	Tue Feb 26 13:54:40 2013 +0200
+++ b/.bashrc	Mon Mar 04 11:00:08 2013 +0200
@@ -41,7 +41,6 @@
 HISTIGNORE=\
 " cd *":\
 "e *":\
-"sudo mv *":"sudo rm *":"sudo cp *":"sudo mkdir *":"sudo chmod *":"sudo chown *":\
 "vlc *":ls:pwd
 
 # To these options assigned default value, as they satisfy my needs I comment them.
@@ -77,6 +76,15 @@
 # ksh-88 egrep-style extended pattern matching.
 shopt -s extglob
 
+# Enable '**' patttern matching. If the pattern is followed by a /, only dirs match.
+shopt -s globstar
+
+# Ignore case in glob.
+shopt -s nocaseglob
+
+# Show stopped jobs before exit. Next ^D force to leave bash...
+shopt -s checkjobs
+
 # Adjust settings according to current terminal window width
 # which may have changed while the last command was running
 # (which is a common occurance for vim/less/etc.)