---
title: "Shellabration: Customizing Your Shell Environment"
description: Senior instructor Steve Brownlee recently explored the power of customizing your shell to enhance your workflow and boost productivity with our Seekers. It’s time to unleash the full power of your shell!
image: https://learn.nashvillesoftwareschool.com/hubfs/NSS_Shellabration_Blog-Graphics_1522x799px.png
---

[![Nashville Software School Logo](https://learn.nashvillesoftwareschool.com/hubfs/Jan2018/Images/NSS-logo-horizontal-small.jpg)](http://nashvillesoftwareschool.com/)

- [Programs](http://nashvillesoftwareschool.com/programs) 
    - [Software Development Jumpstart](http://nashvillesoftwareschool.com/programs/software-development-jumpstart)
    - [Analytics Jumpstart](http://nashvillesoftwareschool.com/programs/analytics-jumpstart)
    - [Full-Time Web Developer Bootcamp](https://nashvillesoftwareschool.com/programs/web-developer-full-time/)
    - [Part-Time Web Developer Bootcamp](https://nashvillesoftwareschool.com/programs/web-developer-part-time/)
    - [Full-Time Data Analytics Bootcamp](http://nashvillesoftwareschool.com/programs/data-analytics-full-time)
    - [Part-Time Data Analytics Bootcamp](http://nashvillesoftwareschool.com/programs/data-analytics-part-time)
    - [Statistics For Data Science](http://nashvillesoftwareschool.com/programs/statistics-for-data-science)
    - [Data Science Bootcamp](http://nashvillesoftwareschool.com/programs/data-science)
    - [Date Engineering Bootcamp](https://nashvillesoftwareschool.com/programs/data-engineering)
    - [Professional Development](http://nashvillesoftwareschool.com/programs/professional-development)
- [Community](http://nashvillesoftwareschool.com/community) 
    - [Shop NSS](https://shopnss.creator-spring.com/)
    - [Our Team](http://nashvillesoftwareschool.com/community/instructors/)
    - [Alumni](http://nashvillesoftwareschool.com/community/alumni/)
    - [Mentors](http://nashvillesoftwareschool.com/community/mentors/)
    - [Employers](http://nashvillesoftwareschool.com/community/employers/)
    - [Veterans' Information](http://nashvillesoftwareschool.com/community/veterans-info/)
    - [Podcast](http://nashvillesoftwareschool.com/community/podcast/)
    - [Join Our Team](https://learn.nashvillesoftwareschool.com/join-our-team)
- [Support NSS](https://support.nashvillesoftwareschool.com) 
    - [Donate](https://support.nashvillesoftwareschool.com/ways-to-give)
    - [Corporate Giving](https://support.nashvillesoftwareschool.com/building-a-better-community-through-corporate-giving)
    - [Become A Volunteer](https://support.nashvillesoftwareschool.com/become-a-volunteer)
    - [Community Impact Report](https://support.nashvillesoftwareschool.com/community-impact-report-2025)
- [Calendar](http://nashvillesoftwareschool.com/calendar) 
    - [Upcoming Events](http://nashvillesoftwareschool.com/calendar/events)
    - [Upcoming Programs](http://nashvillesoftwareschool.com/calendar/upcoming-programs/)
- [Blog](https://learn.nashvillesoftwareschool.com/blog)

# Blog

# Shellabration: Customizing Your Shell Environment

Aug 1, 2023

 •

[Steve Brownlee](https://learn.nashvillesoftwareschool.com/blog/author/steve-brownlee)

*To follow along with this post, you should have basic knowledge of Git and using the Terminal.*

By the time you reach the end of an NSS bootcamp, you should be very comfortable with Git. But lurking behind the scenes in your terminal is a power tool where you can automate your commands to improve your workflow!

But before we can shellabrate, let’s start with some basic vocabulary to a few terms you may have heard before, but not understood completely. 

![Architecture. FTP; MAIL; APPLICATION; DBMS. vi;sh;ed;ksh;csh;cut;more;which;bash;pg;env;SHELL;comp;cpp;as. KERNEL. HARDWARE.](https://learn.nashvillesoftwareschool.com/hs-fs/hubfs/GMT20230426-170115_Recording_1920x1120.mp4.00_01_43_23.Still001.png?width=636&height=457&name=GMT20230426-170115_Recording_1920x1120.mp4.00_01_43_23.Still001.png)

Let’s start with the kernel. Think of the kernel as your basic operating system, like Linux, Unix, and Windows. It’s the interface between your computer’s physical hardware and the processes running on it. In the fifties and sixties, governments and universities would buy massive mainframe computers and people would have to sign up to use it one person at a time. As demand to use these powerful computers grew, it became inefficient to use them one at a time. So some very creative folks came up with an idea to give multiple people the ability to use the computer at the same time, with each person having their own individual development environment. And thus, the shell was born.

![](https://lh6.googleusercontent.com/2iT5xoL7GKAWKNvSTMfEXtCPdqys4ZAubezipKGriCFjuTq5Pk3UOirHqphLJTucbBYhqm7Ui2jfv3aVzGga3AA6Zu85Yz5XmknCUqdqSFRNnN5rSJSgVSxdZxa-DbFzcuOsgkqKV4k3H2DergGMLgc)

Now, every time you log into a computer and you're working in the terminal, you have a shell environment that is unique to you and your user account. When another person logs into the exact same computer, they get their own shell environment that they can customize however they want and run commands at the same time you are.

It was a pretty monumental moment in the history of computing to have these shells created so multiple people could work on the computer at the same time and be customized for each person.

To access the shell and interact with it you’ll use something called a terminal, or terminal emulators, as they used to be called. Whether you're on Windows or Linux or Mac, your terminal is just an application that provides you access to your shell environment. As you type commands into the shell environment, it translates into instructions that work their way down to the kernel, your operating system, to actually run those commands on the hardware on your system.

### Customizing your shell environment

So now that you understand what the shell is, let’s talk about how you can customize your shell environment. 

#### Shell initialization files

Within your shell environment are initialization scripts, or files. NSS students may recognize this as your .zshrc file or .bashrc file. Everytime you start a new terminal, the initialization scripts create a new shell environment and all the commands that you have in your initialization script, customize your shell.

Learn more about Zsh and install it at [https://ohmyz.sh/](https://ohmyz.sh/).

One common way to customize your shell is to create an alias.

#### Create an Alias

An alias is the shell environment’s version of a shortcut. So let's say you're in a shell and working on a project where you are switching between a lot of branches to review pull requests. Of course, `git checkout` is not that complex, but if you’re doing it over and over, it gets really tedious, not to mention the occasional typo. So let’s create a shortcut for `git checkout`.

In your terminal type `alias gc=”get checkout”` and press return. Your shortcut of `gc` is immediately ready for you to use.

Let’s create another alias, this time to create new branches (`git checkout -b`) so you can efficiently set up a new project with five different branches.

In your terminal, type `alias gcn=”git checkout -b”` and press return.

With your new aliases set up, give them a try.

`gcn new-branch` (or whatever you want to call your new branch)

You’ll still need to name your new branch, but you’ve reduced the amount of characters you have to type significantly.

So now that you’re getting the hang of creating aliases, there is one problem – they’re temporary!

You can test it for yourself by opening a new terminal. In the new terminal, your initializations scripts will run and your alias of `gc` or `gcn` will no longer work. Creating an alias in your shell is only temporary. If you want an alias to be permanently available to you, you have to make the change in your initialization script.

##### Create a Permanent Alias

You can add the same aliases we created above to your initialization script and they will be available globally in your terminal. Once you’ve changed your initialization script you’ll need to source it. (Think of sourcing like reloading or refreshing a file.) `source ~/.zshrc` will rerun your initialization script and the aliases you created will be ready to use.

*Not sure how to access your initialization script? If you use Visual Studio Code you can use the command* `code ~/.zshrc`*.*

Give it a try. Code along with me.

#### Create a Function to Run Multiple Commands

Now that you’re comfortable with aliases, let’s take it up a notch and create a function shell initialization file that will run multiple commands using positional arguments.

Our goal will be to run the function `qc “made a change”` and have it run `git add --all` and `git commit ‘m`. `qc` is the function we want to run and the string `“made a change”` is the first positional argument. 

Let’s create the function. We’ll call it `qc` for “quick commit.” This function looks like functions that you write in JavaScript, except you don’t have to put the function keyword in front of it.

`qc () {`

`}`

Now let’s add in our commands.

`qc () {`

`  git add --all`

`  git commit -m “”`

`}`

Now we need to access the first positional argument. We’ll do that with `$1`. This will input the first string you enter into the function.

`qc () {`

`  git add --all`

`  git commit -m “$1”`

`}`

Let’s test our function. Save the initialization file and reload it in your terminal.

Make a small change to your project and run `qc “made a change”` (or whatever commit message you want to use). Boom! With that short command of `qc`, you’ve added and committed your change!

Let’s add one more command to this function to push our changes.

`qc () {`

`  git add --all`

`  git commit -m “$1”`

`  git push origin “$2”`

`}`

Notice the 2nd positional argument? That’s where we’ll put our branch name.

Save your changes, reload your initialization script, and let’s test it again.

Make a small change to your project and run `qc “made a change” branch-name`. We’ve now combined three different commands into one using positional arguments.

![](https://lh3.googleusercontent.com/dXqxiUPttZ40qfNpVUfthgV09JogBH2HHjbqn2IJyfHwsf8yoAGNVfSiyVBi2XVLLeRNk1Mzed88xVhhux7m3VZ7g62kv_-Hky2WqrG7Vk7xK-rgMAuIhLLm6MUQAZPqnt_3HigvDNLXws4ttecLIBw)

That is one of the most powerful features of bash and one of the benefits of being good at the terminal – these commands can really accelerate your workflow. Anything you need to do in the terminal, you can automate multiple tasks to be running a sequence any way you want.

Learn more about bash in this article from [howtogeek.com](https://www.howtogeek.com/726559/what-is-the-bash-shell-and-why-is-it-so-important-to-linux/).

Want another example? Code along with me as I create another function.

#### Bash Script

Ready to harness the ultimate power of a shell environment? A Bash script can run a complex process, like:

- Initialize a new repository that you’ve created on GitHub
- Pull a git ignore file from the internet, if you’re starting a Django or C# project, for example
- Automatically pull that git ignore file from the internet
- Set up your directory
- Verify that everything was done correctly

Follow along with me in the video below.

So what alias have you tried? How much time have you saved with aliases and functions this week? Share in the comments! 

Topics: [Learning](https://learn.nashvillesoftwareschool.com/blog/tag/learning), [Web Development](https://learn.nashvillesoftwareschool.com/blog/tag/web-development), [Software Engineering](https://learn.nashvillesoftwareschool.com/blog/tag/software-engineering)

[![Share on Facebook](https://static.hubspot.com/final/img/common/icons/social/facebook-24x24.png)](http://www.facebook.com/share.php?u=https%3A%2F%2Flearn.nashvillesoftwareschool.com%2Fblog%2F2023%2F08%2F01%2Fshellabration-customizing-your-shell-environment%3Futm_medium%3Dsocial%26utm_source%3Dfacebook) [![Share on LinkedIn](https://static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png)](http://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Flearn.nashvillesoftwareschool.com%2Fblog%2F2023%2F08%2F01%2Fshellabration-customizing-your-shell-environment%3Futm_medium%3Dsocial%26utm_source%3Dlinkedin) [![Share on Twitter](https://static.hubspot.com/final/img/common/icons/social/twitter-24x24.png)](https://twitter.com/intent/tweet?original_referer=https%3A%2F%2Flearn.nashvillesoftwareschool.com%2Fblog%2F2023%2F08%2F01%2Fshellabration-customizing-your-shell-environment%3Futm_medium%3Dsocial%26utm_source%3Dtwitter&url=https%3A%2F%2Flearn.nashvillesoftwareschool.com%2Fblog%2F2023%2F08%2F01%2Fshellabration-customizing-your-shell-environment%3Futm_medium%3Dsocial%26utm_source%3Dtwitter&source=tweetbutton&text=Shellabration%3A%20Customizing%20Your%20Shell%20Environment) [![Share on Email](https://static.hubspot.com/final/img/common/icons/social/email-24x24.png)](mailto:?subject=Check%20out%20https%3A%2F%2Flearn.nashvillesoftwareschool.com%2Fblog%2F2023%2F08%2F01%2Fshellabration-customizing-your-shell-environment%3Futm_medium%3Dsocial%26utm_source%3Demail%20&body=Check%20out%20https%3A%2F%2Flearn.nashvillesoftwareschool.com%2Fblog%2F2023%2F08%2F01%2Fshellabration-customizing-your-shell-environment%3Futm_medium%3Dsocial%26utm_source%3Demail)

### Upcoming Programs

Explore our upcoming programs to begin your journey towards a career in tech! Classes begin year-round.

[![EXPLORE](https://no-cache.hubspot.com/cta/default/4020755/e0f6232d-25e4-456d-a386-a0cf09a776dd.png)](https://cta-redirect.hubspot.com/cta/redirect/4020755/e0f6232d-25e4-456d-a386-a0cf09a776dd)

### Want to know more?

### Support NSS

[![Donate Now](https://no-cache.hubspot.com/cta/default/4020755/6faecbd3-f6a1-4a5b-9256-fa436de1e5ef.png)](https://cta-redirect.hubspot.com/cta/redirect/4020755/6faecbd3-f6a1-4a5b-9256-fa436de1e5ef)

### Post by Topic

- [Student Stories (369)](https://learn.nashvillesoftwareschool.com/blog/tag/student-stories)
- [Web Development (278)](https://learn.nashvillesoftwareschool.com/blog/tag/web-development)
- [Hiring? (233)](https://learn.nashvillesoftwareschool.com/blog/tag/hiring)
- [Analytics + Data Science (210)](https://learn.nashvillesoftwareschool.com/blog/tag/analytics-data-science)
- [Community (125)](https://learn.nashvillesoftwareschool.com/blog/tag/community)
- [News (114)](https://learn.nashvillesoftwareschool.com/blog/tag/news)
- [Learning (111)](https://learn.nashvillesoftwareschool.com/blog/tag/learning)
- [Alumni (77)](https://learn.nashvillesoftwareschool.com/blog/tag/alumni)
- [Software Engineering (60)](https://learn.nashvillesoftwareschool.com/blog/tag/software-engineering)
- [Technology Insights (38)](https://learn.nashvillesoftwareschool.com/blog/tag/technology-insights)
- [10 Years | 2000 Journeys (27)](https://learn.nashvillesoftwareschool.com/blog/tag/10-years-2000-journeys)
- [Get Involved (24)](https://learn.nashvillesoftwareschool.com/blog/tag/get-involved)
- [UI/UX (22)](https://learn.nashvillesoftwareschool.com/blog/tag/ui-ux)
- [Meetups & Community Events (20)](https://learn.nashvillesoftwareschool.com/blog/tag/meetups-community-events)
- [Data Engineering (15)](https://learn.nashvillesoftwareschool.com/blog/tag/data-engineering)
- [Mind The Gap (5)](https://learn.nashvillesoftwareschool.com/blog/tag/mind-the-gap)

All

### Blog Archives

- [August 2026 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/08)
- [July 2026 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/07)
- [June 2026 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/06)
- [May 2026 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/05)
- [April 2026 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/04)
- [March 2026 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/03)
- [February 2026 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/02)
- [January 2026 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2026/01)
- [December 2025 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/12)
- [November 2025 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/11)
- [October 2025 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/10)
- [September 2025 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/09)
- [August 2025 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/08)
- [July 2025 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/07)
- [June 2025 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/06)
- [May 2025 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/05)
- [April 2025 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/04)
- [March 2025 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/03)
- [February 2025 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/02)
- [January 2025 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2025/01)
- [December 2024 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/12)
- [November 2024 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/11)
- [October 2024 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/10)
- [September 2024 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/09)
- [August 2024 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/08)
- [July 2024 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/07)
- [June 2024 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/06)
- [May 2024 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/05)
- [April 2024 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/04)
- [March 2024 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/03)
- [February 2024 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/02)
- [January 2024 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2024/01)
- [December 2023 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/12)
- [November 2023 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/11)
- [October 2023 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/10)
- [September 2023 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/09)
- [August 2023 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/08)
- [July 2023 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/07)
- [June 2023 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/06)
- [May 2023 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/05)
- [April 2023 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/04)
- [March 2023 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/03)
- [February 2023 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/02)
- [January 2023 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2023/01)
- [December 2022 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/12)
- [November 2022 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/11)
- [October 2022 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/10)
- [September 2022 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/09)
- [August 2022 (10)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/08)
- [July 2022 (10)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/07)
- [June 2022 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/06)
- [May 2022 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/05)
- [April 2022 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/04)
- [March 2022 (12)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/03)
- [February 2022 (12)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/02)
- [January 2022 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2022/01)
- [December 2021 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/12)
- [November 2021 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/11)
- [October 2021 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/10)
- [September 2021 (15)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/09)
- [August 2021 (19)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/08)
- [July 2021 (12)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/07)
- [June 2021 (16)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/06)
- [May 2021 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/05)
- [April 2021 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/04)
- [March 2021 (10)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/03)
- [February 2021 (17)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/02)
- [January 2021 (10)](https://learn.nashvillesoftwareschool.com/blog/archive/2021/01)
- [December 2020 (13)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/12)
- [November 2020 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/11)
- [October 2020 (11)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/10)
- [September 2020 (13)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/09)
- [August 2020 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/08)
- [July 2020 (10)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/07)
- [June 2020 (12)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/06)
- [May 2020 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/05)
- [April 2020 (12)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/04)
- [March 2020 (11)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/03)
- [February 2020 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/02)
- [January 2020 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2020/01)
- [December 2019 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/12)
- [November 2019 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/11)
- [October 2019 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/10)
- [September 2019 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/09)
- [August 2019 (10)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/08)
- [July 2019 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/07)
- [June 2019 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/06)
- [May 2019 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/05)
- [April 2019 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/04)
- [March 2019 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/03)
- [February 2019 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/02)
- [January 2019 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2019/01)
- [December 2018 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/12)
- [November 2018 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/11)
- [October 2018 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/10)
- [September 2018 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/09)
- [August 2018 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/08)
- [July 2018 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/07)
- [June 2018 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/06)
- [May 2018 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/05)
- [April 2018 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/04)
- [March 2018 (6)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/03)
- [February 2018 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/02)
- [January 2018 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2018/01)
- [December 2017 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/12)
- [November 2017 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/11)
- [October 2017 (11)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/10)
- [September 2017 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/09)
- [August 2017 (12)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/08)
- [July 2017 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/07)
- [June 2017 (9)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/06)
- [May 2017 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/05)
- [April 2017 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/04)
- [March 2017 (8)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/03)
- [February 2017 (7)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/02)
- [January 2017 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2017/01)
- [December 2016 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/12)
- [September 2016 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/09)
- [August 2016 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/08)
- [July 2016 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/07)
- [June 2016 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/06)
- [May 2016 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/05)
- [April 2016 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/04)
- [March 2016 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/03)
- [February 2016 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/02)
- [January 2016 (5)](https://learn.nashvillesoftwareschool.com/blog/archive/2016/01)
- [December 2015 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2015/12)
- [June 2015 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2015/06)
- [January 2015 (4)](https://learn.nashvillesoftwareschool.com/blog/archive/2015/01)
- [December 2014 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2014/12)
- [February 2014 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2014/02)
- [January 2014 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2014/01)
- [October 2013 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2013/10)
- [June 2013 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2013/06)
- [May 2013 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2013/05)
- [April 2013 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2013/04)
- [November 2012 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2012/11)
- [October 2012 (2)](https://learn.nashvillesoftwareschool.com/blog/archive/2012/10)
- [July 2012 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2012/07)
- [June 2012 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2012/06)
- [May 2012 (3)](https://learn.nashvillesoftwareschool.com/blog/archive/2012/05)
- [January 2012 (1)](https://learn.nashvillesoftwareschool.com/blog/archive/2012/01)

All

### Recent Posts

Nashville Software School is authorized by the [Tennessee Higher Education Commission](https://www.tn.gov/thec/). This authorization must be renewed each year and is based on an evaluation by minimum standards concerning quality of education, ethical business practices, health and safety, and fiscal responsibility.

- [NSS](http://nashvillesoftwareschool.com/)
- [About](http://nashvillesoftwareschool.com/about)
- [Press](http://nashvillesoftwareschool.com/press)
- [Contact](http://nashvillesoftwareschool.com/contact)
- [Virtual Tour](https://learn.nashvillesoftwareschool.com/virtual-tour)
- [FAQ](http://nashvillesoftwareschool.com/faq)
- [Blog](https://learn.nashvillesoftwareschool.com/blog)
- [Policies & Regulations](http://nashvillesoftwareschool.com/policies-and-regulations)

- [Programs](http://nashvillesoftwareschool.com/programs)
- [Software Development Jumpstart](http://nashvillesoftwareschool.com/programs/software-development-jumpstart)
- [Analytics Jumpstart](http://nashvillesoftwareschool.com/programs/analytics-jumpstart)
- [Full-Time Web Developer Bootcamp](http://nashvillesoftwareschool.com/programs/full-time-bootcamps)
- [Part-Time Web Developer Bootcamp](http://nashvillesoftwareschool.com/programs/part-time)
- [Full-Time Data Analytics Bootcamp](http://nashvillesoftwareschool.com/programs/data-analytics-full-time)
- [Part-Time Data Analytics Bootcamp](http://nashvillesoftwareschool.com/programs/data-analytics-part-time)
- [Statistics For Data Science](http://nashvillesoftwareschool.com/programs/statistics-for-data-science)
- [Data Science Bootcamp](http://nashvillesoftwareschool.com/programs/data-science)
- [Data Engineering Bootcamp](https://nashvillesoftwareschool.com/programs/data-engineering)
- [Professional Development](http://nashvillesoftwareschool.com/programs/professional-development)

- [Community](http://nashvillesoftwareschool.com/community)
- [Donate](https://support.nashvillesoftwareschool.com)
- [Shop NSS](https://shopnss.creator-spring.com/)
- [Our Team](http://nashvillesoftwareschool.com/community/instructors/)
- [Alumni](http://nashvillesoftwareschool.com/community/alumni/)
- [Mentors](http://nashvillesoftwareschool.com/community/mentors/)
- [Employers](http://nashvillesoftwareschool.com/community/employers/)
- [Veterans' Information](http://nashvillesoftwareschool.com/community/veterans-info/)
- [Podcast](http://nashvillesoftwareschool.com/community/podcast/)
- [Join Our Team](https://learn.nashvillesoftwareschool.com/join-our-team)

- [Support NSS](https://support.nashvillesoftwareschool.com)
- [Donate](https://support.nashvillesoftwareschool.com/ways-to-give)
- [Corporate Giving](https://support.nashvillesoftwareschool.com/building-a-better-community-through-corporate-giving)
- [Become a Volunteer](https://support.nashvillesoftwareschool.com/become-a-volunteer)
- [Community Impact Report](https://support.nashvillesoftwareschool.com/community-impact-report-2025)
- [Upcoming Events](http://nashvillesoftwareschool.com/calendar)

 

[![Leaders-in-Diversity-2023](https://learn.nashvillesoftwareschool.com/hs-fs/hubfs/Leaders-in-Diversity-2023.png?width=120&height=60&name=Leaders-in-Diversity-2023.png)](https://bizj.us/1qj9h1)[![Best In Business 2020 Winner](https://learn.nashvillesoftwareschool.com/hs-fs/hubfs/BIBA-2020-logo-Winner.jpg?width=120&name=BIBA-2020-logo-Winner.jpg)](https://learn.nashvillesoftwareschool.com/blog/2020/03/10/nss-awarded-best-in-business)![Nashville Scene - Ditch Your Crappy Job 2016](https://learn.nashvillesoftwareschool.com/hs-fs/hubfs/Nashville-Scene-Award.jpg?width=120&name=Nashville-Scene-Award.jpg)

 

[![NACC Proud Member](https://learn.nashvillesoftwareschool.com/hs-fs/hubfs/NACCProudMember.png?width=120&name=NACCProudMember.png)](https://www.nashvillechamber.com/)

[![NTC Member](https://learn.nashvillesoftwareschool.com/hs-fs/hubfs/ntc-member.png?width=250&name=ntc-member.png)](https://technologycouncil.com/)

 

 

<https://www.linkedin.com/school/nashville-software-school/> <https://www.facebook.com/nashvillesoftwareschool.com> <https://www.instagram.com/nashvillesoftwareschool> <https://www.youtube.com/channel/UCCKj04Fy5V4zAjWSIqdqScw> <https://www.x.com/nashsoftware> <https://soundcloud.com/nashville-software-school/sets/stories-from-the-hackery-1?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing>

```json
{
  "@context" : "https://schema.org",
  "@type" : "BlogPosting",
  "author" : {
    "@type" : "Person",
    "name" : "Steve Brownlee",
    "url" : "https://learn.nashvillesoftwareschool.com/blog/author/steve-brownlee"
  },
  "dateModified" : "2023-08-08T15:05:01.366Z",
  "datePublished" : "2023-08-01T13:45:00.000Z",
  "headline" : "Shellabration: Customizing Your Shell Environment",
  "image" : [ "https://learn.nashvillesoftwareschool.com/hubfs/NSS_Shellabration_Blog-Graphics_1522x799px.png" ],
  "mainEntityOfPage" : {
    "@id" : "https://learn.nashvillesoftwareschool.com/blog/2023/08/01/shellabration-customizing-your-shell-environment",
    "@type" : "WebPage"
  },
  "publisher" : {
    "@type" : "Organization",
    "logo" : {
      "@type" : "ImageObject",
      "url" : "https://learn.nashvillesoftwareschool.com/hubfs/NSS-logo-horizontal-large.jpg"
    },
    "name" : "Nashville Software School"
  }
}
```