git clone https://github.com/grolongo/dotfiles.git "${HOME}/dotfiles"git clone git@github.com:grolongo/dotfiles.git "${HOME}/dotfiles"wget -O "${HOME}/dotfiles.tar.gz" https://github.com/grolongo/dotfiles/archive/refs/heads/master.tar.gz && \
tar -xvzf "${HOME}/dotfiles.tar.gz" -C "${HOME}" && \
mv "${HOME}/dotfiles-master" "${HOME}/dotfiles" && \
rm "${HOME}/dotfiles.tar.gz"curl -#L -o "${HOME}/dotfiles.zip" https://github.com/grolongo/dotfiles/archive/refs/heads/master.zip && \
unzip "${HOME}/dotfiles.zip" -d "${HOME}" && \
mv "${HOME}/dotfiles-master" "${HOME}/dotfiles" && \
rm "${HOME}/dotfiles.zip"Invoke-WebRequest -Uri "https://github.com/grolongo/dotfiles/archive/refs/heads/master.zip" -OutFile "${HOME}/dotfiles.zip"; `
Expand-Archive -Path "${HOME}/dotfiles.zip" -DestinationPath "${HOME}"; `
Rename-Item -Path "${HOME}/dotfiles-master" -NewName "${HOME}/dotfiles"; `
Remove-Item -Path "${HOME}/dotfiles.zip" -ForceThen in an Administrator shell: Set-ExecutionPolicy Bypass