I finally got around to finding the alias that was causing my issue with the “cp” command in Linux. I modified my .bashrc and simply commented out the line that read:
alias cp=’cp -i’
I also took the opportunity to add in some of my more favored longer commands, which has really been nice. Like sometimes I just want a program to just build itself, so now that’s what it does.
alias build=’./configure && make && sudo make install’
I don’t use it for many things, but it’s just nice to shorten up some of the things I have to type. 😀