Dicas diversas sobre TI, sistemas operacionais e networking
Remove blank lines ( new line ) with grepecho -e "a\n\nb" | grep -v '^ *$'
or
grep -v '^[\s\t]*$' file.txt > new_file.txt
Check variables: [System.Environment]::GetEnvironmentVariable("HTTP_PROXY","user"); [System.Environment]::GetEnvironme...