0

i tried to trigger this command

cat test.txt | gf xss | sed ‘s/=.*/=/’ | sed ‘s/URL: //’ | tee testxss.txt 

but getting error as sed: -e expression #1, char 1: unknown command: ' sed: -e expression #1, char 1: unknown command: '

please help resolve this issue

Gerald Schneider
  • 19,757
  • 8
  • 52
  • 79

1 Answers1

0

You are using "pretty" quotes instead of proper quotes.

Use ' instead of and

Gerald Schneider
  • 19,757
  • 8
  • 52
  • 79