# /path/to/repo/bin/script
BIN_PATH="$(dirname ${BASH_SOURCE})" # gets 'bin' directory path script is in
DIR_PATH="$(dirname $BIN_PATH)" # gets the main 'repo' directory path
for f in *.txt ; do echo "${f/old/new}"; done
# .bash_profile - login shells | |
# Template from https://gist.github.com/bretonics/5176d35739a0f4e7acfd | |
#----------------------------------------------------------------------------------------------- | |
# SOURCE | |
# Get Aliases and Functions | |
if [ -f ~/.bashrc ]; then | |
. ~/.bashrc |
-- Launch all your desired apps at once, with a single call. | |
-- Works wonderful right after startup/reboot without compromising boot time | |
set appsFolder to "/Applications" | |
set Apps to {"Mail", "Google Drive", "MenuMate", "Due", "PopClip", "Window Tidy", "Yoink", | |
"Trickster", "DropZone", "Mint QuickView", "unDock", "Visits", "CalendarFree", "Degrees"} --Change/add desired apps here | |
repeat with theItem in Apps | |
launch application theItem | |
end repeat |
# .bashrc - interactive, non-login shells | |
# Template from https://gist.github.com/bretonics/f3b61fcd1fa946df6dac | |
#----------------------------------------------------------------------------------------------- | |
# GLOBAL SOURCE | |
# Global Definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc |
# ------------------------------------------------------------------------------- | |
# GENERAL | |
'.source': | |
# Main Description Header | |
'Main Header': | |
'prefix': 'header' | |
'body': """ | |
# ================================================================================ | |
# |
# /path/to/repo/bin/script
BIN_PATH="$(dirname ${BASH_SOURCE})" # gets 'bin' directory path script is in
DIR_PATH="$(dirname $BIN_PATH)" # gets the main 'repo' directory path
for f in *.txt ; do echo "${f/old/new}"; done
A web application framework for R quick function reference sheet.
Function | Creates |
---|---|
actionButton() |
Action button element |
submitButton() |
Submit button element |
#!/bin/bash | |
# Bash Progress Bar: https://gist.github.com/F1LT3R/fa7f102b08a514f2c535 | |
progressBarWidth=20 | |
# Function to draw progress bar | |
progressBar () { | |
# Calculate number of fill/empty slots in the bar |
# .bash_functions - User bash functions | |
# Template from https://gist.github.com/bretonics/894d8c2d1d4813c36b7d36e9a97aedd6 | |
#------------------------------------------------------------------------------- | |
# SYSTEM | |
mkcd() { | |
mkdir $1; cd $1 | |
} |
# Crontab - Crontab template to automate virtual world | |
# Template from https://gist.github.com/bretonics/9a48a3b9ef32d93d15f45c3f007550b4 | |
# Andrés Bretón ~ http://andresbreton.com, [email protected] | |
# ============================================================================== | |
# MIN(0-59) HOUR(0-23) DOM(1-31) M(1-12) DOW(0-6) CMD | |
# |__________|_________|_______|________|______ |__MINUTE of | |
# |_________|_______|________|______ |__HOUR of |
#!/bin/bash -l | |
# cellranger.qsub - A template file to run Cell Ranger on Sun Grid Engine (SGE) | |
# Andrés Bretón ~ http://andresbreton.com, [email protected] | |
# Template from https://gist.github.com/bretonics/f6c57474bb077d2acd293092cf7fa449# | |
#------------------------------------------------------------------------------- | |
# ENVIRONMENTAL VARIABLES AVAILABLE |