This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# tamdate.sh - echoes the date in the Tamrielic calendar | |
# Calendar information from http://www.uesp.net/wiki/Lore:Calendar | |
usage() { | |
echo Usage: tamdate.sh [options] | |
echo Options: | |
echo -m = include Tamrielic month | |
echo -d = include Tamrielic weekday |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Extracts row IDs (keys) from HBase shell results | |
# Remove the header and footer lines | |
# Mark the first line of each row with # replacing the initial space | |
# Eliminate all but the first 26 characters in each line (COLUMN+CELL column) | |
# Eliminate blank lines | |
# Eliminate the first space in each line, but not marks | |
# Merge all results that span more than one line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Written by Mike Ensor ([email protected]) | |
# Copyright 2012 | |
# Use as needed, modify, have fun! | |
# This is intended to be used for Maven3 + Mac OSX | |
# | |
# To use: | |
# in your ".bashrc" or ".bash_profile" add the following line: | |
# source ~/<path to script>/colorize-maven.sh |
NewerOlder