Squash into one PR

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
Thomas Sjögren 2015-05-30 08:48:08 +02:00
commit 315c208cae
5 changed files with 30 additions and 12 deletions

View file

@ -1,5 +1,8 @@
#!/bin/sh
ps_command=$(command -v ps)
ps_args='-U root -u root -f'
# Returns the absolute path of a given string
abspath () { case "$1" in /*)printf "%s\n" "$1";; *)printf "%s\n" "$PWD/$1";; esac; }