User Tools

Site Tools


useful_commands

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
useful_commands [2012/10/06 12:42]
85.218.109.130
useful_commands [2012/10/06 12:50]
85.218.109.130
Line 1: Line 1:
 +==== ls ====
 +
 +  * return the last edited file 
 +
 +<​code>​ls -ct1 | head -1</​code>​
 +
 +broken into elements:
 +
 +<​code>​ls -c #sorts by ctime, newest first
 +ls -clt #shows ctime and sorts by ctime
 +ls -cl #show ctime, sorts by name
 +</​code>​
 +
 +
 +==== xterm ====
 +
 +
 +  * run a command in xterm, keep xterm open even after the process finished or exited with an error
 +
 <code bash>​xterm -xrm '​*hold:​ true' -e $1 &   # this is to keep xterm from closing <code bash>​xterm -xrm '​*hold:​ true' -e $1 &   # this is to keep xterm from closing
 pid1=$! ​ # this is to save the pid, in case you want to close it pid1=$! ​ # this is to save the pid, in case you want to close it
 disown ​  # this is to prevent the finishing shell from closing the xterm disown ​  # this is to prevent the finishing shell from closing the xterm
 </​code>​ </​code>​
useful_commands.txt ยท Last modified: 2012/10/06 17:39 by 85.218.109.130