Is there a way to download ALL available eagle-libraries in a batch, as an archive or such?
This would be very helpful....
Is there a way to download ALL available eagle-libraries in a batch, as an archive or such?
This would be very helpful....
I decided to download several of the libraries using a script on my Linux machine. The neat thing is that this script is handy for keeping the libraries updated. The script downloads the libraries from Element14 one at a time, unzips them, and moves the library files to my Eagle library folder:
wget -N http://www.element14.com/community/servlet/JiveServlet/download/1491946873-101100/Spansion.zip
(repeat for all the libraries you need to download)
find . -name \*\.zip -exec unzip -o "{}" \;
find . -name \*\.lbr -exec mv -u {} "${EAGLE_LBR_DIR}" \;
where EAGLE_LBR_DIR is the path to my Eagle libraries.
I decided to download several of the libraries using a script on my Linux machine. The neat thing is that this script is handy for keeping the libraries updated. The script downloads the libraries from Element14 one at a time, unzips them, and moves the library files to my Eagle library folder:
wget -N http://www.element14.com/community/servlet/JiveServlet/download/1491946873-101100/Spansion.zip
(repeat for all the libraries you need to download)
find . -name \*\.zip -exec unzip -o "{}" \;
find . -name \*\.lbr -exec mv -u {} "${EAGLE_LBR_DIR}" \;
where EAGLE_LBR_DIR is the path to my Eagle libraries.