Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Latest commit

 

History

History
15 lines (9 loc) · 230 Bytes

languages_comparison.md

File metadata and controls

15 lines (9 loc) · 230 Bytes

How to say the same in different languages

Shell: get text data from URL

Powershell

(Invoke-WebRequest -Uri $URL -UseBasicParsing).Content

cmd

?

Mac and Linux

curl -sSL $URL

2