Skip to content

Instantly share code, notes, and snippets.

@aagarwal-gtr
Last active August 29, 2015 14:17
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 aagarwal-gtr/766dc2a6b0f9191d4e52 to your computer and use it in GitHub Desktop.
Save aagarwal-gtr/766dc2a6b0f9191d4e52 to your computer and use it in GitHub Desktop.
IN WINDOWS DEFAULTS TO .xml
abc -> abc.xml correct
abc. -> abc..xml correct
abc, -> abc,.xml correct
abc.ssrf -> abc.ssrf correct
abc..ssrf -> abc..ssrf correct
abc,ssrf -> abc,ssrf.xml correct
abc,.ssrf -> abc,.ssrf correct
abc.,ssrf -> abc.,ssrf.xml correct
abc.xml -> abc.xml correct
abc..xml -> abx..xml correct
abc,xml -> abx,xml.xml correct
abc,.xml -> abc,.xml correct
abc.,xml ->abc.,xml.xml correct
IN FEDORA/NIX DEFAULTS TO .ssrf
abc -> abc.ssrf correct
abc. -> abc. wrong, should be abc.ssrf
abc, -> abc,.ssrf correct
abc.ssrf -> abc.ssrf correct
abc..ssrf -> abc..ssrf correct
abc,ssrf -> abc,ssrf.ssrf correct
abc,.ssrf -> abc,.ssrf correct
abc.,ssrf -> abc.,ssrf wrong, should be abc.,ssrf.ssrf
abc.xml -> abc.xml correct
abc..xml -> abc..xml correct
abc,xml -> abc,xml.ssrf correct
abc,.xml -> abc,.xml correct
abc.,xml -> abc.,xml wrong, should be abc.,xml.ssrf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment