Bash

Articles

Scripting Setup

  • Personal Script Directories, Dale McGladdery, group42.ca
    https://www.group42.ca/personal_script_directories
    A description of setting up directories and paths for personal Bash shell scripts. Though the setup is straightforward and a defacto standard it isn’t obvious starting out.

Quick Reference

Stuff I seem to always to need to reference, no matter how much I’ve been working with it.

bin/bash header for script file

#!/bin/bash
#!/usr/bin/env bash

Date into variable

DATE=$(date +%Y-%m-%d)