Differences between revisions 5 and 6
Revision 5 as of 2021-08-18 12:12:07
Size: 1784
Editor: emanuele6
Comment: rephrase
Revision 6 as of 2021-08-18 17:09:39
Size: 2150
Editor: GreyCat
Comment: because you can't have this page without eval
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
This other one consists of a function that uses `declare -f` to print its own definition. This one consists of a function that uses `declare -f` to print its own definition.
Line 51: Line 51:
(May add more later if I figure them out.) This one uses `eval` together with an "assign default value" parameter expansion. It works from an interactive bash or ksh shell, and assumes (in fact, requires) that the variable `s` is not already defined:

{{{
q=\' b=\\ eval ${s='echo q=$b$q b=$b$b eval \${s=$q$s$q}'}
}}}

It also relies on a particular implementation of `echo`, which differs between dash and bash. It doesn't work with dash's `echo`.

Bash quine

A quine is a program that takes no input, and prints its own source code as output. Writing one is challenging in any language, and usually involves poking into the darkest, smelliest corners of the syntax.

If you've come across this page through some sort of wandering browsing, you might wish to stop reading after this introduction, and attempt to write a quine yourself. Reading the finished results here is not as educational as the struggle to write one. If on the other hand you've already struggled, either successfully or unsuccessfully, and would like to compare your results against someone else's, then read on.

Invalid quines

The classic shell approach would be something like

   1 #!/bin/sh
   2 cat "$0"

However, this is considered invalid, as it takes input from the file system.

The other classic shell approach would be the empty program. This one is considered to fail the spirit of the challenge, because it doesn't teach you much.

Valid quines

This first one is derived from the Java quine posted on the wikipedia page.

   1 #!/bin/bash
   2 q=(
   3 '#!/bin/bash'
   4 'q=('
   5 ')'
   6 'printf "%s\n" "${q[@]:0:2}"'
   7 'printf "\047%s\047\n" "${q[@]}"'
   8 'printf "%s\n" "${q[@]:2}"'
   9 )
  10 printf "%s\n" "${q[@]:0:2}"
  11 printf "\047%s\047\n" "${q[@]}"
  12 printf "%s\n" "${q[@]:2}"

This one consists of a function that uses declare -f to print its own definition.

NB: there is an extra space after f () and after { to match the output of declare -f.

   1 #!/bin/bash -
   2 f () 
   3 { 
   4     echo '#!/bin/bash -';
   5     declare -f f;
   6     echo f
   7 }
   8 f

This one uses eval together with an "assign default value" parameter expansion. It works from an interactive bash or ksh shell, and assumes (in fact, requires) that the variable s is not already defined:

q=\' b=\\ eval ${s='echo q=$b$q b=$b$b eval \${s=$q$s$q}'}

It also relies on a particular implementation of echo, which differs between dash and bash. It doesn't work with dash's echo.


CategorySillyThings

BashQuine (last edited 2022-07-12 22:52:49 by emanuele6)