Skip to content

Instantly share code, notes, and snippets.

View TurtleEngr's full-sized avatar

TurtleEngr TurtleEngr

View GitHub Profile
@TurtleEngr
TurtleEngr / sshagent
Last active June 11, 2024 02:47
ssh-agent helper script
#!/bin/bash
# $Id: sshagent,v 1.81 2024/06/01 16:13:53 bruce Exp $
#set -u
# Var prefix key
# cgVar - global constant
# gVar - global var
# gpVar - global parameter. Usually a CLI option, or predefined
# pVar - a function parameter (local)
# tVar - a local variable
@mmizutani
mmizutani / libreoffice
Created June 8, 2018 09:27 — forked from fintanmm/libreoffice
LibreOffice headless server script
#!/bin/bash
# LibreOffice headless server script
#
# chkconfig: 2345 80 30
# description: headless openoffice server script
# processname: libreoffice
#
# Author: Vic Vijayakumar
# Modified by Federico Ch. Tomasczik
# and then by Mark Pavlichuk
@e7d
e7d / sample.sh
Last active May 11, 2024 13:46
Bash "try catch"
#!/bin/bash
export AnException=100
export AnotherException=101
# start with a try
try
( # open a subshell !!!
echo "do something"
[ someErrorCondition ] && throw $AnException