Create your own Unix/Linux terminal commands


This video tutorial show you how to create a simple unix/linux terminal command in C. The command called myEcho, it is similar to the echo command in linux. It prints the command name and any other argument you pass.

Tags: , , ,

6 Responses to “Create your own Unix/Linux terminal commands”

  1. somecomputergeek says:

    A coding tutorial in which the code is so small, it is barely readable is useless.

  2. xxSwAmPxx says:

    Echo in perl:

    foreach(@ARGV){print “$_ “}
    print “n”

  3. ObyYou says:

    @SIFILISNALISICA
    Fuego by the string quartet Bond

  4. SIFILISNALISICA says:

    Can you tell me the name of song in background ?

  5. ObyYou says:

    @DemonCullen
    here is the script, i’ll try to upload it with a better resolution.

    //script starts here
    #include

    int main(int argc, char *argv[]){

    for( ; *argv; ++argv)
    printf(“%s “, *argv);
    printf(“n”);
    return 0;
    }

  6. DemonCullen says:

    May you post what the script was in your description? It’s somewhat hard to read in the video, even with fullscreen at 480p. Thank you in advance. :)

Leave a Reply