bash - Is there any functional difference between .bashrc and .bash_rc? -
is there difference (functionality) between .bashrc , .bash_rc other underscore in filename? of webpages visit .bashrc file in mac happens named .bash_rc. (i did create file forgot origin).
.bash_rc has no special meaning bash whatsoever: unless you've gone out of way configure shell read it, presence have no effect.
check isn't referenced env environment variable, , consider using:
ps4=':${bash_source}:${lineno}+' bash -ix ...to track every line run during shell invocation, logged next filename , line number came from; can thusly identify what's causing given line executed tracing upward same.
Comments
Post a Comment