Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)JO
Posts
1
Comments
69
Joined
2 yr. ago

  • If the anime you're watching has "furry" girls, but only the ears, it's not much of a furry anime. However if only the male characters are full anthro (animal face, covered in hair, etc), then the creator is a coward.

  • The ${} syntax manipulates a variable. In this instance, I believe % removes a suffix. # is for a prefix. I can never remember which is which.

    Semicolons just separate statements. You can replace them with a new line to get the same effect.

  • Is your issue about just syntax?

     
        
    for part in $text; do
      echo "xX${part}Xx"
    done
    
      

    In bash, this loops over each word in a variable. If you want each line, you'll need to use a while read loop instead.

     
        
    while read -r line; do
      echo "xX${line}Xx"
    done <<< "$text"