Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 991 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 991 Bytes

Scripts-Settings

This is my personal collection of Windows, Mac and Linux scripts used to automate system functions, virtual machine maintenance, etc. Contained within are various PowerShell and Bash scripts that make my life easier as a developer.

PowerShell Initial Setup

  1. Copy the contents of \Windows\PowerShell\profile-system.ps1 into your personal PowerShell profile script (%HOME%\My Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1).
  2. Re-Source your profile script... . $PROFILE

Bash Setup

Clone this repository to your $HOME directory:

git clone git@github.com:kbeckman/Scripts-Settings.git ~

Run the following command to add a line to your ~/.bashrc or ~/.zshenv file:

echo ". ~/Scripts-Settings/Bash/environment-setup.sh" >> ~/.zshenv

Re-source your ~/.bashrc or ~/.zshenv file:

. ~/.zshenv