dylan

Results 130 comments of dylan

Scrolling has not yet been added.

It might be worth running a series of tests on a large number of files.

That's probably a better solution as this *is* an album art display tool and singles do still usually contain the `album` field.

Yes. Just never got around to it since I don't need the client functionality.

Basically: - Print the string that will be prepended. - Print the contents of the file. - Redirect this combined output to the file. Notes: - `$(< "$2")` is equivalent...

I would also quote the `$2` inside `$(< $2)`, so `$(< "$2")`. The only issue with this method is that it'll be slow for large files. `bash` has to load...

That is "fixable" by changing `%s%s` to `%s\n%s\n` though not ideal since it'll add a newline where one already exists.

This is awesome! I appreciate the work you've done, it's great to see the book translated and accessible to more people. :+1:

This is a given as they are different shells with different feature-sets. I don't know whether or not I'll write a `zsh` version of the bible for two reasons. 1....

I got it working. It's a little slow as it requires two `while` loops. I'm going to work on making this even faster but for now it's an example. Usage...