Update all bin-scripts to include a description.
The description will always be on the third line. Signed-off-by: Jacob Kiers <jacob@alphacomm.nl>
This commit is contained in:
parent
4fc8d0f296
commit
4ec08fcd76
@ -1,3 +1,5 @@
|
|||||||
#!/usr/bin/env bash -
|
#!/usr/bin/env bash -
|
||||||
|
|
||||||
|
# Returns a random commit message from http://whatthecommit.com/
|
||||||
|
|
||||||
curl http://whatthecommit.com/index.txt
|
curl http://whatthecommit.com/index.txt
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Based on git-extras
|
|
||||||
|
# Creates a changelog from the git commits.
|
||||||
|
|
||||||
FILE=""
|
FILE=""
|
||||||
LIST=false
|
LIST=false
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Open a GitHub file/blog page for FILE on LINE.
|
||||||
|
|
||||||
## Usage: git-open FILE [LINE]
|
## Usage: git-open FILE [LINE]
|
||||||
## Open GitHub file/blob page for FILE on LINE. FILE is the path to the
|
## Open GitHub file/blob page for FILE on LINE. FILE is the path to the
|
||||||
## file on disk; it must exist and be tracked with the current HEAD
|
## file on disk; it must exist and be tracked with the current HEAD
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# lyrics.sh
|
# Returns the lyrics of the current track playing in Spotify.
|
||||||
#
|
#
|
||||||
# A fine piece of work by @febuiles
|
# A fine piece of work by @febuiles
|
||||||
# https://gist.github.com/1549979
|
# https://gist.github.com/1549979
|
||||||
|
|
||||||
artist=`osascript -e'tell application "iTunes"' -e'get artist of current track' -e'end tell'`
|
artist=`osascript -e'tell application "Spotify"' -e'get artist of current track' -e'end tell'`
|
||||||
title=`osascript -e'tell application "iTunes"' -e'get name of current track' -e'end tell'`
|
title=`osascript -e'tell application "Spotify"' -e'get name of current track' -e'end tell'`
|
||||||
|
|
||||||
song=`curl -G --data-urlencode "artist=$artist" \
|
song=`curl -G --data-urlencode "artist=$artist" \
|
||||||
--data-urlencode "title=$title" -s http://makeitpersonal.co/lyrics`
|
--data-urlencode "title=$title" -s http://makeitpersonal.co/lyrics`
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Abuse of the passive voice
|
# Check for abuse of the passive voice
|
||||||
# http://matt.might.net/articles/shell-scripts-for-passive-voice-weasel-words-duplicates/
|
# http://matt.might.net/articles/shell-scripts-for-passive-voice-weasel-words-duplicates/
|
||||||
|
|
||||||
|
|
||||||
irregulars="awoken|\
|
irregulars="awoken|\
|
||||||
been|born|beat|\
|
been|born|beat|\
|
||||||
become|begun|bent|\
|
become|begun|bent|\
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# http://matt.might.net/articles/shell-scripts-for-passive-voice-weasel-words-duplicates/
|
# Check written text for the passive voice, weasel words and duplicate words.
|
||||||
|
|
||||||
|
# http://matt.might.net/articles/shell-scripts-for-passive-voice-weasel-words-duplicates/
|
||||||
|
|
||||||
# Common stuff
|
# Common stuff
|
||||||
CYAN="$(tput setaf 6)"
|
CYAN="$(tput setaf 6)"
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Update the version using semver (http://semver.org).
|
||||||
|
|
||||||
# Sekati: Semantic Version String Manipulator
|
# Sekati: Semantic Version String Manipulator
|
||||||
# @author jason m horwitz | sekati.com
|
# @author jason m horwitz | sekati.com
|
||||||
# Copyright (C) 2012 jason m horwitz, Sekat LLC. All Rights Reserved.
|
# Copyright (C) 2012 jason m horwitz, Sekat LLC. All Rights Reserved.
|
||||||
|
Loading…
Reference in New Issue
Block a user