I am running Leap 15.0 on one of my systems and I suddenly started getting an error message whenever I cd to some directory - marc@bigbang:~> cd Documents findup: command not found marc@bigbang:~/Documents> What is findup and how do I resolve this error message? YaST was unhelpful in finding a package that has findup and I have not found much info about it from Google.... Thanks for helping me with this issue... Marc... -- --... ...-- .----. ... -.. . .-- .- --... .--. -..- .-- -- .- .-. -.-. *Computers: the final frontier. These are the voyages of the user Marc. His mission: to explore strange new hardware. To seek out new software and new applications. To boldly go where no Marc has gone before! * -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
04.02.2020 19:33, Marc Chamberlin пишет:
I am running Leap 15.0 on one of my systems and I suddenly started getting an error message whenever I cd to some directory -
marc@bigbang:~> cd Documents findup: command not found
What type -a cd says?
marc@bigbang:~/Documents>
What is findup and how do I resolve this error message? YaST was unhelpful in finding a package that has findup and I have not found much info about it from Google....
Thanks for helping me with this issue... Marc...
-- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 2/4/20 9:05 AM, Andrei Borzenkov wrote:
type -a cd
marc@bigbang:~/Documents> type -a cd cd is a function cd () { if test -z "$1"; then builtin cd; else if test -z "$2"; then builtin cd "$1"; else builtin cd "$1" "$2"; fi; fi; _f=`findup .build-config`; if test -n "$_f" -a "$_lastf" != "$_f"; then echo "Loading $_f"; _lastf="$_f"; source "$_f"; fi } cd is a shell builtin -- --... ...-- .----. ... -.. . .-- .- --... .--. -..- .-- -- .- .-. -.-. *Computers: the final frontier. These are the voyages of the user Marc. His mission: to explore strange new hardware. To seek out new software and new applications. To boldly go where no Marc has gone before! * -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
04.02.2020 20:10, Marc Chamberlin пишет:
On 2/4/20 9:05 AM, Andrei Borzenkov wrote:
type -a cd
marc@bigbang:~/Documents> type -a cd cd is a function cd () { if test -z "$1"; then builtin cd; else if test -z "$2"; then builtin cd "$1"; else builtin cd "$1" "$2"; fi; fi; _f=`findup .build-config`; if test -n "$_f" -a "$_lastf" != "$_f"; then echo "Loading $_f"; _lastf="$_f"; source "$_f"; fi }
It is certainly not a function on my Leap 15.1. You need to find out where this definition comes from. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 2/4/20 9:27 AM, Andrei Borzenkov wrote:
It is certainly not a function on my Leap 15.1. You need to find out where this definition comes from.
Thanks Andrie, I found it, there was a .kde-bashrc file in my home directory that contained a bunch of functions. I suspect this is a left-over from previous times, my home directory is on a separate partition and I simply mount it as /home each time I migrate from one version of OpenSuSE to the next. Anywise I changed its name so it will no longer be used by the bash shell and all is happy now. Again, thanks much for your help! Much appreciated... Marc -- --... ...-- .----. ... -.. . .-- .- --... .--. -..- .-- -- .- .-. -.-. *Computers: the final frontier. These are the voyages of the user Marc. His mission: to explore strange new hardware. To seek out new software and new applications. To boldly go where no Marc has gone before! * -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
participants (2)
-
Andrei Borzenkov
-
Marc Chamberlin