<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: 10 Practical Examples Using Wildcards to Match Filenames in Linux	</title>
	<atom:link href="https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 09:58:44 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Anna		</title>
		<link>https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-1774921</link>

		<dc:creator><![CDATA[Anna]]></dc:creator>
		<pubDate>Tue, 26 Apr 2022 04:45:57 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27490#comment-1774921</guid>

					<description><![CDATA[How to get the list of files with space and e.g. a V as in &quot;myfile V.txt&quot;?
&lt;pre&gt;
ls * V*
ls &quot;* V*&quot;
ls &#039;* V*&#039;
ls *[ ]V*
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>How to get the list of files with space and e.g. a V as in &#8220;myfile V.txt&#8221;?</p>
<pre>
ls * V*
ls "* V*"
ls '* V*'
ls *[ ]V*
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: jag		</title>
		<link>https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-1334279</link>

		<dc:creator><![CDATA[jag]]></dc:creator>
		<pubDate>Mon, 18 May 2020 21:57:43 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27490#comment-1334279</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-1303691&quot;&gt;Johny Why&lt;/a&gt;.

Actually, it did do the match as requested; the trick is that what it found wasn&#039;t actually a flat-file. On my box, it&#039;s actually a symbolic link to a directory. So what it&#039;s actually showing is the contents of that directory.

You can see this if you start with this:
&lt;pre&gt;
# ls -ld /sys/class/net/wl*
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-1303691">Johny Why</a>.</p>
<p>Actually, it did do the match as requested; the trick is that what it found wasn&#8217;t actually a flat-file. On my box, it&#8217;s actually a symbolic link to a directory. So what it&#8217;s actually showing is the contents of that directory.</p>
<p>You can see this if you start with this:</p>
<pre>
# ls -ld /sys/class/net/wl*
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Johny Why		</title>
		<link>https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-1303691</link>

		<dc:creator><![CDATA[Johny Why]]></dc:creator>
		<pubDate>Sat, 07 Dec 2019 21:17:25 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27490#comment-1303691</guid>

					<description><![CDATA[This gives all contents, as expected:
&lt;code&gt;
$ ls /sys/class/net

ens4  lo  wlp0s26f7u2
&lt;/code&gt;


But this filter DOESN&#039;T return wlp0s26f7u2, as expected:
&lt;pre&gt;
$  ls /sys/class/net/wl*

addr_assign_type  carrier             dev_id    duplex             ifindex    name_assign_type  phys_port_id    proto_down  subsystem     wireless
addr_len          carrier_changes     dev_port  flags              iflink     netdev_group      phys_port_name  queues      tx_queue_len
address           carrier_down_count  device    gro_flush_timeout  link_mode  operstate         phys_switch_id  speed       type
broadcast         carrier_up_count    dormant   ifalias            mtu        phy80211          power           statistics  uevent
&lt;/pre&gt;
What am I doing wrong?

thanks]]></description>
			<content:encoded><![CDATA[<p>This gives all contents, as expected:<br />
<code><br />
$ ls /sys/class/net</p>
<p>ens4  lo  wlp0s26f7u2<br />
</code></p>
<p>But this filter DOESN&#8217;T return wlp0s26f7u2, as expected:</p>
<pre>
$  ls /sys/class/net/wl*

addr_assign_type  carrier             dev_id    duplex             ifindex    name_assign_type  phys_port_id    proto_down  subsystem     wireless
addr_len          carrier_changes     dev_port  flags              iflink     netdev_group      phys_port_name  queues      tx_queue_len
address           carrier_down_count  device    gro_flush_timeout  link_mode  operstate         phys_switch_id  speed       type
broadcast         carrier_up_count    dormant   ifalias            mtu        phy80211          power           statistics  uevent
</pre>
<p>What am I doing wrong?</p>
<p>thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-920556</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Mon, 09 Oct 2017 12:21:07 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27490#comment-920556</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-920283&quot;&gt;ks&lt;/a&gt;.

@ks 

Here, a character means alphanumeric characters or all valid filename characters. It also matches no character(nothing).]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-920283">ks</a>.</p>
<p>@ks </p>
<p>Here, a character means alphanumeric characters or all valid filename characters. It also matches no character(nothing).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ks		</title>
		<link>https://www.tecmint.com/use-wildcards-to-match-filenames-in-linux/comment-page-1/#comment-920283</link>

		<dc:creator><![CDATA[ks]]></dc:creator>
		<pubDate>Mon, 09 Oct 2017 01:55:59 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27490#comment-920283</guid>

					<description><![CDATA[An asterisk (*) – matches zero or more occurrences of any character, number.]]></description>
			<content:encoded><![CDATA[<p>An asterisk (*) – matches zero or more occurrences of any character, number.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
