kdevelop provides this AppImage binary:
wget -O KDevelop.AppImage https://download.kde.org/stable/kdevelop/5.1.1/bin/linux/KDevelop-5.1.1-x86_64.AppImage
chmod +x KDevelop.AppImage
./KDevelop.AppImage
It works well. So I want to make a soft link called kd
to that binary in /usr/bin
, eg:
/usr/bin/sudo ln -s KDevelop-5.1.1-x86_64.AppImage kd
Now if I run kd file1
, I'd expect that it would open a file name file1
in the current folder, but it always tries to open a file name file1
in my home folder - which is not where it should be.
Is there some way to fix this issue?