--- linux version 2 Fri Jul 04 14:40:12 +0000 2008
+++ linux version 6 Tue Nov 11 05:43:40 +0000 2008
@@ -1,3 +1,13 @@
+File in Use?
+ lsof | grep <file> (case-sensitive)
+
Check the dependecy of a binary file:
- objdump a.exe | grep 'DLL name'
+ objdump -p a.exe | grep 'DLL Name'
+
+To run a process in the background, regardless of whether the terminal window is
+closed:
+ nohup <some command> &
+
+ eg. nohup ruby /u/app/qbglc/current/script/runner -e development 'load
+ "/u/app/qbglc/current/script/app/some_script.rb"' &