Skip to content

Instantly share code, notes, and snippets.

def return_duplicates(arr):
set = {}
for x in arr:
if x in set:
set[x] = 2
else:
set[x] = 1
ret = []
for y in set.keys():
@djwashburn
djwashburn / easybg
Created October 31, 2015 22:13
A unix shortcut for running a GUI program in the background from the command line. Runs process in the background and redirects output.
#!/bin/bash
if [ -z "$1" ]; then # check if we have any arguments
echo usage: $0 command # if not, print a message and quit
exit
fi
nohup "$@" >/dev/null 2>&1 & # "$@" expands all the given arguments