Skip to content

Instantly share code, notes, and snippets.

View MikeDacre's full-sized avatar

Mike Dacre MikeDacre

View GitHub Profile
@amackey
amackey / ncbi_decrypt
Created January 9, 2011 14:16
ncbi_decrypt: utility script to submit decryption jobs to PBS cluster
#!/usr/bin/perl
use strict;
use warnings;
my $path = shift @ARGV;
$path ||= $ENV{PWD};
unless ($path =~ m/^\//) {
$path = "$ENV{PWD}/$path";
@netj
netj / memusg
Last active February 20, 2025 18:08
memusg -- Measure memory usage of processes
#!/usr/bin/env bash
# memusg -- Measure memory usage of processes
# Usage: memusg COMMAND [ARGS]...
#
# Author: Jaeho Shin <[email protected]>
# Created: 2010-08-16
############################################################################
# Copyright 2010 Jaeho Shin. #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #