Get first and last line of file


bash way
(head -1; tail -1) < /etc/passwd

sed way
sed -n '1p; $p' /etc/passwd

awk way
awk 'NR==1; END { print }' /etc/passwd

Set https proxy variable on windows

 Check variables:  [System.Environment]::GetEnvironmentVariable("HTTP_PROXY","user"); [System.Environment]::GetEnvironme...

Mais vistos