Skip to content

Instantly share code, notes, and snippets.

@mohd-akram
Created August 3, 2022 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohd-akram/831e2714769ba3cb04abc980b630a5dc to your computer and use it in GitHub Desktop.
Save mohd-akram/831e2714769ba3cb04abc980b630a5dc to your computer and use it in GitHub Desktop.
Find URLs in a directory
#!/bin/sh
grep -ro "http[^ )>']*" "$1" | grep -v "[{}]" | cut -d: -f 2- | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment