Delete the old libs directory
Delete the old libs folder by using
Example: rm -rf /bot/libs
Download the file using wget
wget https://github.com/NotArb/Jupiter/releases/download/release-0.1.80-alpha/notarb-0.1.80-alpha-unix.tar.gz
Uncompress the file
tar -xvzf notarb-0.1.80-alpha-unix.tar.gz
Copy the libs directory to the working one
cp -r /update/notarb-unix/libs /bot
-r tells cp to copy directories recursively, including all files and subdirectories.
/update/notarb-unix/libs is the source directory you want to copy.
/bot is the destination where you want the libs folder to go.
This command will create a copy of the libs folder in the /bot directory, preserving the original folder structure and contents.