Makefile 470 B

123456789101112131415
  1. update-readme:
  2. @options=$$(COLUMNS=80 ./youtube-dl --help | sed -e '1,/.*General Options.*/ d' -e 's/^\W\{2\}\(\w\)/### \1/') && \
  3. header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
  4. footer=$$(sed -e '1,/.*## COPYRIGHT/ d' README.md) && \
  5. echo "$${header}" > README.md && \
  6. echo -e '\n## OPTIONS' >> README.md && \
  7. echo "$${options}" >> README.md&& \
  8. echo -e '\n## COPYRIGHT' >> README.md && \
  9. echo "$${footer}" >> README.md
  10. .PHONY: update-readme