Skip to content

Instantly share code, notes, and snippets.

View jaga-me's full-sized avatar

Jaga-Me jaga-me

View GitHub Profile
@jaga-me
jaga-me / deleteLambdas.sh
Last active July 5, 2018 11:01 — forked from jankei/deleteLambdas.sh
deletes old versions of lambdas that aren't aliased
#!/bin/bash
fnlist=(
'SAMPLE FUNCTION'
'ADD MORE FUNCTIONS HERE'
)
count=0
while [ "x${fnlist[count]}" != "x" ]
do
for (( i=1; i<=$1; i++ ))