<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://kb.whizzbang.co/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://kb.whizzbang.co/feed.php">
        <title>Whizzbang Tech Stuff - linux</title>
        <description></description>
        <link>https://kb.whizzbang.co/</link>
        <image rdf:resource="https://kb.whizzbang.co/_media/logo.png" />
       <dc:date>2026-05-15T13:44:50+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://kb.whizzbang.co/linux:file_operations?rev=1660937181&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.whizzbang.co/linux:general_bash-ery?rev=1771447666&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.whizzbang.co/linux:general_commands?rev=1493149140&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.whizzbang.co/linux:general_system_operations?rev=1504623458&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.whizzbang.co/linux:grep?rev=1493173644&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.whizzbang.co/linux:process_management?rev=1527859636&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://kb.whizzbang.co/_media/logo.png">
        <title>Whizzbang Tech Stuff</title>
        <link>https://kb.whizzbang.co/</link>
        <url>https://kb.whizzbang.co/_media/logo.png</url>
    </image>
    <item rdf:about="https://kb.whizzbang.co/linux:file_operations?rev=1660937181&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-08-19T19:26:21+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>file_operations</title>
        <link>https://kb.whizzbang.co/linux:file_operations?rev=1660937181&amp;do=diff</link>
        <description>Linux File Operations

Find Directories Containing Specified File Glob

For example, find directories containing Python source files.


find /c/home/db/ -type f -name &#039;*.py&#039; | sed -r &#039;s|/[^/]+$||&#039; | sort | uniq


	*  sed -r &#039;s|/[^/]+$||&#039; eats off the file name of a fully qualified file path, leaving only the path.</description>
    </item>
    <item rdf:about="https://kb.whizzbang.co/linux:general_bash-ery?rev=1771447666&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-02-18T20:47:46+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>general_bash-ery</title>
        <link>https://kb.whizzbang.co/linux:general_bash-ery?rev=1771447666&amp;do=diff</link>
        <description>General Bash-ery

	*  Ctrl + a, move to the beginning of the line
	*  Ctrl + e, move to the end of the line

	*  Ctrl + b, move back one character
	*  Ctrl + f, move forward one character

	*  Ctrl + k,   Cut the Line after the cursor to the clipboard.</description>
    </item>
    <item rdf:about="https://kb.whizzbang.co/linux:general_commands?rev=1493149140&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-04-25T19:39:00+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>general_commands</title>
        <link>https://kb.whizzbang.co/linux:general_commands?rev=1493149140&amp;do=diff</link>
        <description>General Commands

	*  grep</description>
    </item>
    <item rdf:about="https://kb.whizzbang.co/linux:general_system_operations?rev=1504623458&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-09-05T14:57:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>general_system_operations</title>
        <link>https://kb.whizzbang.co/linux:general_system_operations?rev=1504623458&amp;do=diff</link>
        <description>General Linux System Operations

System Monitoring

sysstat/sar

	*  A package of tools that provides CPU, network and other system statistics.
	*  sar (system activity report) is the tool for accessing the statistics data.

Examples of network stats command</description>
    </item>
    <item rdf:about="https://kb.whizzbang.co/linux:grep?rev=1493173644&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2017-04-26T02:27:24+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>grep</title>
        <link>https://kb.whizzbang.co/linux:grep?rev=1493173644&amp;do=diff</link>
        <description>grep</description>
    </item>
    <item rdf:about="https://kb.whizzbang.co/linux:process_management?rev=1527859636&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2018-06-01T13:27:16+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>process_management</title>
        <link>https://kb.whizzbang.co/linux:process_management?rev=1527859636&amp;do=diff</link>
        <description>Linux Process Management

ps

	*  process listing command

An example of a good general purpose process listing including a long formatted date-time of the start time of the command and the elapsed time since the process was started.


ps -eo pid,lstart,etime,cmd:128</description>
    </item>
</rdf:RDF>
