Skip to content

Instantly share code, notes, and snippets.

View david-bakin-sl's full-sized avatar

David Bakin david-bakin-sl

View GitHub Profile
@mslinn
mslinn / update.sh
Last active March 11, 2024 17:09
Bash Script to Update all Git Directories Below Specified Directories
#!/bin/bash
# Update all git directories below specified directories
# Skips directories that contain a file called .ignore
# See https://stackoverflow.com/a/61207488/553865
HIGHLIGHT="\e[01;34m"
NORMAL='\e[00m'
export PATH=${PATH/':./:'/:}
@asabaylus
asabaylus / gist:3071099
Created July 8, 2012 14:12
Github Markdown Heading Anchors

Anchors in Markdown

To create an anchor to a heading in github flavored markdown. Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading) so your link should look like so:

[create an anchor](#anchors-in-markdown)