tools.ps: Add a simple Linux-only ps clone.

db4
Doug Coleman 2012-02-03 17:30:34 -08:00
parent daf13a0f4f
commit a813b0436d
5 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1 @@
Doug Coleman

View File

@ -0,0 +1 @@
linux

View File

@ -0,0 +1,4 @@
USING: tools.ps tools.test ;
IN: tools.ps.tests
{ } [ ps. ] unit-test

23
basis/tools/ps/ps.factor Normal file
View File

@ -0,0 +1,23 @@
! Copyright (C) 2012 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: assocs io.directories io.encodings.utf8 io.files
io.pathnames kernel math.parser prettyprint sequences splitting
unicode.categories ;
IN: tools.ps
: ps-comm ( path -- string )
"/comm" append utf8 file-contents "\0" split " " join
[ blank? ] trim "[" "]" surround ;
: ps-cmdline ( path -- path string )
dup "/cmdline" append utf8 file-contents
[ dup ps-comm ] [ "\0" split " " join ] if-empty ;
: ps ( -- assoc )
"/proc" [
"." directory-files [ file-name string>number ] filter
[ ps-cmdline ] { } map>assoc
] with-directory ;
: ps. ( -- )
ps simple-table. ;

View File

@ -0,0 +1 @@
A basic ps utility for Linux.