Difference between revisions of "One-liners"

From Freephile Wiki
Jump to navigation Jump to search
(ode to Peteris)
(adds "Delete old stuff" section; better intro to X.org)
Line 11: Line 11:
 
</pre>
 
</pre>
  
== Size of X ==
+
== Size of Graphical Desktop (X Window System) ==
Since everything is a file, we can look in the folder for processes (/proc), and specifically the folder created for the process id of "X" (X-org).  <code>grep</code>ping for the line starting with 'VmSize', we can see the Virtual Memory size of our graphical desktop.
+
So you think your graphical desktop is slowing things down compared to using a pure console based system.  Short of logging in single user mode, how much memory does the graphical desktop consume?  Since everything is a file, we can look in the folder for processes (/proc), and specifically the folder created for the process id of "X" ([http://x.org X.org]).  <code>grep</code>ping for the line starting with 'VmSize', we can see the Virtual Memory size of our graphical desktop.
 
<source lang="bash">grep ^VmSize /proc/$(pidof X)/status</source>
 
<source lang="bash">grep ^VmSize /proc/$(pidof X)/status</source>
 
Result:
 
Result:
Line 18: Line 18:
 
VmSize:  158212 kB
 
VmSize:  158212 kB
 
</pre>
 
</pre>
 +
 +
== Delete old stuff ==
 +
You stumble upon a directory full of backups, which is great.  But you also realize that nobody setup <code>logrotate</code> or other command to prune old content.  Maybe that's because these backups are produced manually, say during upgrades, and so they are also deleted manually.  What's a quick one-liner to remove old files?  Use the <code>mtime</code> (modification time) option to <code>find</code> combined with the <code>exec</code> option to execute <code>rm</code> (remove) said files.
 +
<source lang="bash">
 +
# Make sure we've got backups; look for recent files
 +
sudo ls -al /backups
 +
# list everything in the backups folder that's older than 30 days
 +
sudo find /backups -mtime +30 -ls
 +
# OK, delete those files
 +
sudo find /backups -mtime +30 -exec rm {} \;
 +
</source>
  
 
{{References}}
 
{{References}}

Revision as of 09:48, 8 October 2015

Sometimes one-liners are so cool, you just want to remember them. And good one-liners can also teach you the intricacies and features of the Bash shell. Although there are better sites on the Internet for finding one-liners, understanding one-liners or playing on the command line, we'd still like to illustrate a few here.

Free Memory[edit | edit source]

Use echo to output the result of a sub-shell, and a few extra characters (' - + p'), which is then piped to the (reverse-polish) desk calculator. Concatenate the /proc/meminfo file, printing it on STDOUT. Using extended-regex grep, we search for lines of output that begin with "MemFree", "Cached" or "Writeback" followed by the colon character. Piping to awk, we can print out the string in position 2 of each line. Those values are ultimately processed in the calculator by popping the last two numbers off the stack (Writeback and Cached), and adding that result to the first number (MemFree).[1]

echo $(cat /proc/meminfo | egrep '^(MemFree|Cached|Writeback):' | awk '{print $2}') - + p | dc

Result:

3033240

Size of Graphical Desktop (X Window System)[edit | edit source]

So you think your graphical desktop is slowing things down compared to using a pure console based system. Short of logging in single user mode, how much memory does the graphical desktop consume? Since everything is a file, we can look in the folder for processes (/proc), and specifically the folder created for the process id of "X" (X.org). grepping for the line starting with 'VmSize', we can see the Virtual Memory size of our graphical desktop.

grep ^VmSize /proc/$(pidof X)/status

Result:

VmSize:   158212 kB

Delete old stuff[edit | edit source]

You stumble upon a directory full of backups, which is great. But you also realize that nobody setup logrotate or other command to prune old content. Maybe that's because these backups are produced manually, say during upgrades, and so they are also deleted manually. What's a quick one-liner to remove old files? Use the mtime (modification time) option to find combined with the exec option to execute rm (remove) said files.

# Make sure we've got backups; look for recent files
sudo ls -al /backups
# list everything in the backups folder that's older than 30 days
sudo find /backups -mtime +30 -ls
# OK, delete those files
sudo find /backups -mtime +30 -exec rm {} \;

References[edit source]