this post was submitted on 15 Jul 2023
27 points (100.0% liked)

Shell Scripting

1349 readers
4 users here now

From Ash, Bash and Csh to Xonsh, Ysh and Zsh; all shell languages are welcome here!

Rules:
  1. Follow Lemmy rules!
  2. Posts must relate to shell scripting. (See bottom of sidebar for more information.)
  3. Only make helpful replies to questions. This is not the place for low effort joke answers.
  4. No discussion about piracy or hacking.
  5. If you find a solution to your problem by other means, please take your time to write down the steps you used to solve your problem in the original post. You can potentially help others having the same problem!
  6. These rules will change as the community grows.

Keep posts about shell scripting! Here are some guidelines to help:


In general, if your submission text is primarily shell code, then it is welcome here!

founded 1 year ago
MODERATORS
 

I'm sure some of you have absolute monstrosities of sigils (I know I do, in my .zshrc alone). Post them without context, and try and guess what other users's lines are. If you want to provide context or guess, use the markdown editor to spoiler-tag your guesses and explanations!

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

It's not bash itself that was the complex part exactly, but I have a CI/CD pipeline that generates epub files from markdown. In some cases I have custom designed covers, but where a cover doesn't exist I have a bash script generate one using Imagemagick.

I wanted to generate the cover in one command to lessen performance impacts and disk I/O, but it took me a few weeks to figure out how to do it all in a single Imagemagick command:

convert \
    -size 960x1536 \
    -background "${backgroundColor}" \
    -fill "${textColor}" \
    -font "Liberation-Serif" \
    -pointsize 96 \
    -gravity north \
    caption:"${title}" \
    -bordercolor "rgb(0, 0, 0)" \
    -border 2 \
    -bordercolor "${borderColor}" \
    -border 40 \
    -background none \
    -fill "${textColor}" \
    -font "Liberation-Serif" \
    -pointsize 48 \
    -gravity south \
    -geometry +0-800 \
    -annotate +0+40 "${author}" \
    "${destination}cover.jpg"

Eventually it made an abstract sense to me, and I was able to bring it down to two commands and then finally one. This generates a cover with a selected background color (based on content type) and contains title text that will wrap to an inner border.

I think I had to give up on the author being wrapped, but it's much smaller than the title anyway.

[โ€“] [email protected] 2 points 1 year ago (1 children)

Nice work! I've definitely had some fun with convert recently, as you might tell from the community banner.

spoilerIt is an image showing the script I used to create it ๐Ÿ˜›.

[โ€“] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

That's certainly a script! ๐Ÿ˜…

[โ€“] [email protected] 2 points 1 year ago* (last edited 1 year ago) (1 children)

It's a little more complex than needed, for the pixelated background I used xcolor names and then modulated them darker, but then relented and used hexcodes for the text in the foreground.

[โ€“] [email protected] 1 points 1 year ago

It's very impressive! I try to write legible code first, and if my shell scripts get too complex, I move on to another tool typically:

  • C# scripting
  • Python
  • PowerShell
  • Node.js

That might be why I don't have many cryptic examples.