×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    Korn shell: Difference between revisions

    Content added Content deleted
    imported>DrOwl
    (New page: ==Korn Shell== KSH is a unix shell, it has scripting cabilities === Examples for loops in ksh === Simple for loop for x in `ls .tar$` ; do echo "gzip $x" # gzip $x done Sim...)
     
    imported>DrOwl
    mNo edit summary
    Line 1: Line 1:
    {{stub}}


    ==Korn Shell==
    ==Korn Shell==
    Line 22: Line 23:
    clear
    clear
    done
    done




    [[Category:Programming]]
    [[Category:Linux]]
    [[Category:Hacking]]
    [[Category:Computer]]
    [[Category:Unix]]

    Revision as of 11:16, 15 February 2007

    Template loop detected: Template:Stub

    Korn Shell

    KSH is a unix shell, it has scripting cabilities


    Examples for loops in ksh

    Simple for loop

    for x in  `ls .tar$` ; do  
    echo "gzip $x"
    # gzip $x
    done
    


    Simple while loop (infanitly repating)

    while :
    do
    tail log.file
    sleep 23
    clear
    done
    
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.