Index: /tags/ipp-20130712/pstamp/scripts/pstamp_server_status
===================================================================
--- /tags/ipp-20130712/pstamp/scripts/pstamp_server_status	(revision 35912)
+++ /tags/ipp-20130712/pstamp/scripts/pstamp_server_status	(revision 35913)
@@ -155,4 +155,17 @@
     }
 }
+{
+    # get the space available in the working directory file system
+    my $df_output = `df -h .`;
+    my @lines = split "\n", $df_output;
+    if (scalar @lines == 2) {
+        my ($total, $used, $free, $percent, $part) = split " ", $lines[1];
+        print "<br><b>Working Directory:</b> $percent $free free out of $total total<br>\n";
+    } else {
+        print "<br>\n";
+        print "unexpected output from df:\n$df_output\n";
+    }
+
+}
 
 # now run the script psstatus to check the status of running requests and finished requests
