Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
Upack command line toll for linux is there one
-
Hi
Is there the equivalent of the upack command line tool for windows avaliable for linux platforms.I am looking for a package manager that will act as repository's for both windows and linux and the universal package repository seems to do just that
Product: ProGet
Version: 4.7.6
-
We don't currently have one, but it'd be quite trivial to build.
Of course, you can very easily just use
curl
instead, as many of our users do, because it's just as easy!
-
Sorry should have said I'm from a window background and V rusty at Linux last time i used Unix in anger was SCO
Is there an example curl script that can be shared to pull down and then extract the files from a packageMarcus
-
Well, for this, you would use the Download package endpoint
There's a lot of guides out there on how to use cUrl (here's a good one), but a basic use would be...
curl http://proget.local/upack/my-feed/download/my-group/my-package/1.2.3?contentOnly=zip -o my-package1.2.3.zip
... then you can just use unzip.