Gregory Chamberlain

Results 12 comments of Gregory Chamberlain

See also 61ca5070 (#31). begin belay

What is `..?*` supposed to expand to? Is that not equivalent to `..*`? ```sh $ ls -a . .. .hidden visible $ echo * .* visible . .. .hidden $...

Oh, I see: `..?*` covers files that start with two dots (except `..`). Very nice! ```sh $ ls -a . .. ..doubledot .hidden visible $ echo * .* visible ....

@dylanaraps Is this worth adding to the book somewhere? Either as a note in 'Count files or directories in directory' or a section dedicated to globbing tricks?

As a corollary to this, I wonder if it is possible to emulate something like du(1), to some extent? I don't know enough about how file sizes work or whether...

Yeah, by ‘arguments list’ I mean $@. Not sure how else to phrase it—maybe positional parameters?

OK, so the question is whether or not to use POSIX terminology where possible. I actually wrote 'positional parameters' first but changed it to 'arguments list' because that phrase is...

Probably time to close this one, unless someone can repro.

I had to figure this out on my own yesterday and these instructions would have been very helpful. Is there a reason this has not been merged?

This seems to be documented quite thoroughly in the readme, so I think this can be closed now. https://github.com/kerrickstaley/genanki/blob/336b666/README.md?plain=1#L80-L104