Advertisement
metalx1000

Viewing HTML Code in the Shell

Jan 21st, 2025
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. wget -qO- "http://filmsbykris.com/scripts"
  2. wget -qO- "http://filmsbykris.com/scripts"|sed -e 's/<[^>]*>//g'
  3. wget -qO- "http://filmsbykris.com/scripts"|sed -e 's/<[^>]*>//g'|recode html..ascii
  4. wget -qO- "http://filmsbykris.com/scripts"|sed -e 's/<[^>]*>//g'|recode html
  5.  
  6. w3m -dump "http://filmsbykris.com/scripts"
  7.  
  8. site="$(wget -qO- "http://filmsbykris.com/scripts")"
  9. echo $site
  10. echo "$site"
  11. echo "$site"|w3m -dump -T text/html
  12.  
  13. wget -qO- "http://filmsbykris.com/scripts"|html2text
  14. echo "$site"|html2text
  15.  
  16. echo "$site"| php -r 'echo strip_tags(file_get_contents("php://stdin"));'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement