GithubHelp home page GithubHelp logo

Comments (2)

dylanaraps avatar dylanaraps commented on June 4, 2024

It's a C style for loop with blank values. It doesn't set a loop variable, it doesn't have a condition and it doesn't have an iterator. The side-effect of this is an infinite loop.

C Style loop:

for ((i=0;i<100;i++)); do
    echo "$i"
done

Semi blank (Infinite loop with iterator and variable):

for ((i=0;;++i)); do
    echo "$i"
done

Blank

for((;;)); do
    echo "$i"
done

from pure-bash-bible.

deltaxflux avatar deltaxflux commented on June 4, 2024

Well, yes I know but I don't you got my question. I was wondering how the interpreter / compiler translate this. So I made a quick snipped in c.

#include <stdio.h>

int main() {
    for(;;)
        printf("Hello GH");

    return 0;
}

Which is compiled to:

       .file   "main.c"
        .text
        .globl  main
        .type   main, @function
main:
.LFB0:
        .cfi_startproc
        pushq   %rbp
        .cfi_def_cfa_offset 16
        .cfi_offset 6, -16
        movq    %rsp, %rbp
        .cfi_def_cfa_register 6
.L2:
        movl    $84, %edi
        call    putchar@PLT
        jmp     .L2
        .cfi_endproc
.LFE0:
        .size   main, .-main
        .ident  "GCC: (GNU) 8.1.1 20180531"
        .section        .note.GNU-stack,"",@progbits

And here is the loop if we take a closer look at L2. I mean it is hard to express but is it like:

// pseudo code
// for(
handleFor() {
  if (loop_variable, == EMPTY && condition == EMPTY && iterator == EMPTY) {
    infinite_loop= true;
  }
}

from pure-bash-bible.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.