<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Linux%2FPATH</id>
	<title>Linux/PATH - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Linux%2FPATH"/>
	<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Linux/PATH&amp;action=history"/>
	<updated>2026-04-30T19:24:26Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://aznot.com/index.php?title=Linux/PATH&amp;diff=9414&amp;oldid=prev</id>
		<title>Kenneth: Created page with &quot;== Show PATH ==   echo $PATH  == Find the Full Path of a Specific Binary ==   which [command]  Example:  which grep  == Search PATH ==  List All Available Binaries/Commands   compgen -c | sort  Advanced Method (for Full Paths) - If you need the full path to all executables in your PATH, you can use a loop or a more complex find command. A robust method is to use find within the directories specified by $PATH:  #  IFS=:;: Temporarily sets the internal field separator to a...&quot;</title>
		<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Linux/PATH&amp;diff=9414&amp;oldid=prev"/>
		<updated>2026-01-10T01:59:29Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Show PATH ==   echo $PATH  == Find the Full Path of a Specific Binary ==   which [command]  Example:  which grep  == Search PATH ==  List All Available Binaries/Commands   compgen -c | sort  Advanced Method (for Full Paths) - If you need the full path to all executables in your PATH, you can use a loop or a more complex find command. A robust method is to use find within the directories specified by $PATH:  #  IFS=:;: Temporarily sets the internal field separator to a...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Show PATH ==&lt;br /&gt;
&lt;br /&gt;
 echo $PATH&lt;br /&gt;
&lt;br /&gt;
== Find the Full Path of a Specific Binary ==&lt;br /&gt;
&lt;br /&gt;
 which [command]&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 which grep&lt;br /&gt;
&lt;br /&gt;
== Search PATH ==&lt;br /&gt;
&lt;br /&gt;
List All Available Binaries/Commands &lt;br /&gt;
 compgen -c | sort&lt;br /&gt;
&lt;br /&gt;
Advanced Method (for Full Paths) - If you need the full path to all executables in your PATH, you can use a loop or a more complex find command. A robust method is to use find within the directories specified by $PATH:&lt;br /&gt;
 #  IFS=:;: Temporarily sets the internal field separator to a colon, which helps the shell correctly interpret the $PATH variable&amp;#039;s structure.&lt;br /&gt;
 IFS=:; find $PATH -maxdepth 1 -executable -type f 2&amp;gt;/dev/null | sort&lt;br /&gt;
&lt;br /&gt;
== keywords ==&lt;/div&gt;</summary>
		<author><name>Kenneth</name></author>
	</entry>
</feed>