The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 02-14-2008
joeyg's Avatar
joeyg joeyg is offline Forum Staff  
modérateur
  
 

Join Date: Dec 2007
Location: Home of 17-time world champion Boston Celtics
Posts: 1,311
Cool Start with what you know in a language/code fmailiar to you

You already know that you have a task with four parts.
From there, begin writing more details on what you want to accomplish.
Next, start writing some form of code - this does not need to be in correct syntax - but more to understand the needed variables and functions you will need to handle.

Then, begin writing the code in small sections.
Remember the ECHO command can be your best friend when beginning to program and follow you program steps. Then, slowly build thru all of the four parts.

Create some test data, and execute to verify correct processing.

Commenting is always a very good idea. It can help you understand what you were trying to do, what the variable is supposed to store, etc..

Don't get too caught up on elegant coding - for example, doing six things in one long command. As a beginner, it is often best to only do one thing at a time. At least, until you are more familiar with the programming syntax and commands.