<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>One Liners on Enterprise Data Architect | Principal Data Strategist |  MySQL Subject Matter Expert |  Author | Speaker</title>
    <link>https://ronaldbradford.com/categories/one-liners/</link>
    <description>Recent content in One Liners on Enterprise Data Architect | Principal Data Strategist |  MySQL Subject Matter Expert |  Author | Speaker</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 10 Nov 2016 14:57:20 +0000</lastBuildDate>
    <atom:link href="https://ronaldbradford.com/categories/one-liners/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Getting a clearer picture of http response time breakdown via CLI</title>
      <link>https://ronaldbradford.com/blog/getting-a-clearer-picture-of-http-response-time-breakdown-via-cli-2016-11-10/</link>
      <pubDate>Thu, 10 Nov 2016 14:57:20 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/getting-a-clearer-picture-of-http-response-time-breakdown-via-cli-2016-11-10/</guid>
      <description>I came across this handy python script https://github.com/reorx/httpstat that provides a http response breakdown in text. This saves you having to open up a browser and look at a visual network response waterfall.</description>
    </item>
    <item>
      <title>Mac OS/X  One Liner – Changing hostname</title>
      <link>https://ronaldbradford.com/blog/mac-osx-one-liner-changing-hostname-2008-03-27/</link>
      <pubDate>Wed, 26 Mar 2008 21:47:14 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mac-osx-one-liner-changing-hostname-2008-03-27/</guid>
      <description>To change the Hostname under Mac OS/X 10.5&#xA;$ sudo scutil --set HostName servername.example.com </description>
    </item>
    <item>
      <title>Unix One Liner – List Open Files</title>
      <link>https://ronaldbradford.com/blog/unix-one-liner-list-open-files-2008-03-27/</link>
      <pubDate>Wed, 26 Mar 2008 21:42:33 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/unix-one-liner-list-open-files-2008-03-27/</guid>
      <description>$ lsof -p [pid] </description>
    </item>
    <item>
      <title>Linux One Liner – vim remove syntax highlighting</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-vim-remove-syntax-highlighting-2006-12-05/</link>
      <pubDate>Tue, 05 Dec 2006 05:05:40 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-vim-remove-syntax-highlighting-2006-12-05/</guid>
      <description>From within vi, which is normally vim these days.&#xA;:syn off That’s bugged me at times and I never knew how to turn it off.</description>
    </item>
    <item>
      <title>Linux One Liner – dirtree alternative</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-dirtree-alternative-2006-10-09/</link>
      <pubDate>Mon, 09 Oct 2006 04:42:56 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-dirtree-alternative-2006-10-09/</guid>
      <description>Linux has a cool command called dirtree that gives a more visual representation of your directory structure. If you have the misfortune of working on a Unix variant that doesn’t have it, checkout this cool one liner.</description>
    </item>
    <item>
      <title>Linux One Liner – Erasing Stuff</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-erasing-stuff-2006-07-16/</link>
      <pubDate>Mon, 17 Jul 2006 09:18:42 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-erasing-stuff-2006-07-16/</guid>
      <description>Don’t try this at home unless you understand what it’s going to do.&#xA;sudo dd if=/dev/zero of=/dev/hda1 </description>
    </item>
    <item>
      <title>Linux One Liner – Finding Stuff</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-finding-stuff-2006-06-10/</link>
      <pubDate>Sun, 11 Jun 2006 03:11:55 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-finding-stuff-2006-06-10/</guid>
      <description>Let’s say you created a file in your home directory but can’t work out which directory you put it in.&#xA;&amp;lt;br /&amp;gt; $ find ~ -name somefile.txt&amp;lt;br /&amp;gt; You can replace ~ (tilda) with a directory e.</description>
    </item>
    <item>
      <title>Linux One Liner – Parsing long HTML urls</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-parsing-long-html-urls-2006-06-10/</link>
      <pubDate>Sun, 11 Jun 2006 02:43:57 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-parsing-long-html-urls-2006-06-10/</guid>
      <description>Ever wanted to look at a long HTML URL more easily, say to investigate a parameter. Here is a search from MapQuest.&#xA;http://www.mapquest.com/maps/map.adp?formtype=address&amp;addtohistory=&amp;address=10%20Market%20St&amp;city=San%20Francisco&amp;state=CA&amp;zipcode=94111%2d4801&amp;country=US&amp;geodiff=1 &amp;lt;br /&amp;gt; $ echo &amp;quot;[insert url here]&amp;quot; | | tr &amp;quot;&amp;amp;#038;?</description>
    </item>
    <item>
      <title>Linux One Liner – Security</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-security-2006-06-10/</link>
      <pubDate>Sun, 11 Jun 2006 02:31:47 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-security-2006-06-10/</guid>
      <description>Here are a few useful one liners for Linux Security. View current packet filtering rules. (i.e. what can and can’t access your computer.&#xA;&amp;lt;br /&amp;gt; $ iptables -L&amp;lt;br /&amp;gt; On older distros, iptables may not be in place.</description>
    </item>
    <item>
      <title>Linux One Liner – Using the manual</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-using-the-manual-2006-06-10/</link>
      <pubDate>Sun, 11 Jun 2006 02:19:48 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-using-the-manual-2006-06-10/</guid>
      <description>For users of Linux regardless of the skill level, using the OS manual is invaluable. Frank gives an example using crontab at Viewing a specific version of a man page , but as with Linux there is always more then one way to skin a cat.</description>
    </item>
    <item>
      <title>Linux One Liner – Calculating Used Diskspace</title>
      <link>https://ronaldbradford.com/blog/linux-one-liner-calculating-used-diskspace-2006-06-10/</link>
      <pubDate>Sun, 11 Jun 2006 01:12:27 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/linux-one-liner-calculating-used-diskspace-2006-06-10/</guid>
      <description>You can easily see the state of diskspace used with the command.&#xA;&amp;lt;br /&amp;gt; $ df&amp;lt;br /&amp;gt; However, often you want to know where most of the diskspace is being taken.</description>
    </item>
    <item>
      <title>New Category – Linux One Liners</title>
      <link>https://ronaldbradford.com/blog/new-category-linux-one-liners-2006-06-10/</link>
      <pubDate>Sun, 11 Jun 2006 00:45:57 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/new-category-linux-one-liners-2006-06-10/</guid>
      <description>I came across Frank’s blog Programming – Powerful One liners – “What can a one liner do for you?”&#xA;Great Idea, I often use one line Linux commands and in my current consulting role, I’m being asked more and more Linux questions, which often result in a one Line answer.</description>
    </item>
  </channel>
</rss>
