I installed script shells today using the command ./install.sh and want to uninstall them.
I know the locations where the .sh files are located.
I installed script shells today using the command ./install.sh and want to uninstall them.
I know the locations where the .sh files are located.
2
Answers
You’ll need to
rm
remove each file manually. Also, be mindful of whether any of those files replaced a pre-existing file. There is no simple undo.To uninstall the script shells that you installed using the command
./install.sh
, you need to locate the installed files and remove them. Since you mentioned that you know the locations of the.sh
files, you can follow these steps to uninstall them:.sh
files are located using thecd
command. For example:rm
command followed by the filenames of the.sh
files. For example:Replace
script1.sh
,script2.sh
,script3.sh
, etc., with the actual filenames of the script shells you want to uninstall.After executing these steps, the script shells will be uninstalled from your system. Make sure you are certain about uninstalling them, as this action cannot be undone.