fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

slowly working on a mega terminal cheat sheet

here's a link to the draft as a PDF: jvns.ca/terminal-cheat-sheet-d

@Laukidh @b0rk

I tried **/*.txt and got the same result as my usual */*.txt. Using bash, but I've always used */*.txt with previous shells such as sh and csh.

Luke T. Shumaker

@weaselx86 In Bash you have to enable **/ with `shopt -s globstar`.

@b0rk **/ is useful enough and Bash common enough that IMO it'd be worth adding the above to the sheet.

edit: I'd said `extglob`, not `globstar`. My apologies for the misinformation.

@lukeshu @b0rk

extglob seems to be on by default on my system (Ubuntu 20.04.6 LTS).

I still don't understand what the difference is supposed to be between
*/*.txt and **/*.txt

Here are my "glob" shopt settings:
dotglob off
extglob on
failglob off
globstar off
nocaseglob off
nullglob off

@weaselx86 @b0rk

** searches down _multiple_ directory levels recursively. So while they'd both find things 1 layer down like foo/bar.txt, **/*.txt will find foo/bar/baz.txt while */*.txt won't.

@lukeshu @b0rk

Aha!

OK, that's cool, much more convenient than having to use find(1) like I've been doing all these years.

But on my system extglob doesn't do it; I have to set
shopt -s globstar

@weaselx86 @lukeshu @b0rk

If you have a directory structure like this..:

foo/apple.txt
foo/orange.txt
foo/ds
bar/bread.txt
bar/banas.txt
bar/exceptions/twizzlers.txt
bar/exceptions/disillusionment.png

...then */*.txt will not match twizzlers.txt but **/*.txt will: that is, ** recurses into subdirectories (including dot-prefixed "hidden" subdirectories, modulo the dotglob setting) whereas * does not.

(This is controlled by the globstar setting, not the extglob setting; that does other stuff.)

@weaselx86 and because I should cite my assertions but was constrained by post length there..:

- here's what the extglob setting controls: gnu.org/software/bash/manual/h

- here's where globstar and dotglob are explained: gnu.org/software/bash/manual/h (every other option with a name including the word "glob" is also very much worth knowing about in detail)

- and here's a convenient table about which shopt feature was added in which version of bash: mywiki.wooledge.org/BashFAQ/061 (should be in the manual, dangit!)

www.gnu.orgPattern Matching (Bash Reference Manual)Pattern Matching (Bash Reference Manual)