Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gromnitsky/windows-iso-url
Get a list of Windows ISOs without a web browser
https://github.com/gromnitsky/windows-iso-url
Last synced: about 6 hours ago
JSON representation
Get a list of Windows ISOs without a web browser
- Host: GitHub
- URL: https://github.com/gromnitsky/windows-iso-url
- Owner: gromnitsky
- Created: 2023-11-10T19:26:17.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-16T22:14:00.000Z (about 1 year ago)
- Last Synced: 2023-11-16T23:53:06.090Z (about 1 year ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
https://www.youtube.com/watch?v=5jnmDNxSiAo
There are some scripts on GitHub that supposedly perform a similar
job, but I believe this one is the smallest:~~~
$ grep -Ev '^#|^$' windows-iso-url | wc -l
46
~~~It's actually a GNU Make's makefile:
~~~
$ sed -n '1,2p;/check:/p' windows-iso-url
#!/usr/bin/make -sf
# to debug: make -f windows-iso-url v=1
check:; type uuidgen dialog curl nokogiri ruby > /dev/null
~~~## Usage
This should print a list of URLs:
$ ./windows-iso-url
You may need to run it in a temporary directory because it saves its
state in a bunch of `step*` text files (which it autoremoves).## Loicense
MIT