Sponsored Content
Top Forums Shell Programming and Scripting Using the counter of a for loop in command line parameter Post 302204400 by joeyg on Wednesday 11th of June 2008 12:17:11 PM
Old 06-11-2008
Hammer & Screwdriver a start on using counter variables

> ice=1
> while [ "$ice" -le 5 ]; do mice=$((ice*2)); echo $ice $mice; ice=$((ice+1)); done

1 2
2 4
3 6
4 8
5 10

Code:
ice=1
while [ "$ice" -le 5 ]
   do 
   mice=$((ice*2))
   echo $ice $mice
   ice=$((ice+1))
done

thus, ice is the counter and mice is another variable that is a function of ice
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Command Line width parameter

can someone please tell me how i can increase the number of characters that can be input on the command line? (2 Replies)
Discussion started by: Scoogie
2 Replies

2. Programming

Command line parameter for C program

I am writing a C program that part of the idea is to using a command line parameter to control not to run certain part of the sub program. I am totally new to C, I do not have any idea how to pass a command line arguments from a C program. Can anyone help ?! Thanks (3 Replies)
Discussion started by: Wing m. Cheng
3 Replies

3. Shell Programming and Scripting

using tab to finish command line parameter

Anyone know how to set it up so that when at command line in unix (specifically solaris 2.5.1), and you hit the tab it will finish the command with the nearest file that matches? AND how to set it up so using up and down arrows access your previous commands? Thanks for all the help here, i've had... (3 Replies)
Discussion started by: kymberm
3 Replies

4. Shell Programming and Scripting

replacing a string in a file with command line parameter

Hello, I am trying to replace a string with a paramter given along with the script. I am replacing application1 to application2 with the script: ./change_app.sh application2 change_app.sh: #!/bin/ksh grep $1 applications.dat 2>&1 >/dev/null echo $1 file=pckage.new sed 's/Name:... (5 Replies)
Discussion started by: chiru_h
5 Replies

5. Shell Programming and Scripting

How to compare a command line parameter with -- in shell scripting

Hi, I need to check if a parameter provided at the command line is equal to --.How can i do that ? Please help me. Thanks and Regards, Padmini (4 Replies)
Discussion started by: padmisri
4 Replies

6. Shell Programming and Scripting

How to get the last command line parameter?

"$#" gives the number of command-line arguments. How do you get the last command-line parameter (or any particular one determined by a variable)? I thought it would be "${$#}", but that produces something completely unexpected. (4 Replies)
Discussion started by: dkarr
4 Replies

7. Shell Programming and Scripting

Parsing a command line parameter in script

I have a simple script that builds a complex program call which passes a number of parameters to the program. I'm trying to enhance the script to include the value of the command line parameter in the name of a file being created. The problem I'm having is that the parameter may include a forward... (11 Replies)
Discussion started by: pbmax626
11 Replies

8. Shell Programming and Scripting

perl script - command line parameter

i am a beginner, i want to make a program that takes any command line arguments... and print it out in reverse. ie. if the command line argument is "thanks for helping me" i want it to output "me helping for thanks" :D i have tried using the reverse command, but i cant get it working!! ... (3 Replies)
Discussion started by: bshell_1214
3 Replies

9. Shell Programming and Scripting

Incrementing the date depending on the Counter (parameter) passed to the script

Hello Everyone, I have been trying to complete a shell script where, I need to increment the date depending on the file (depending on the date) availability on the remote server. i.e. Basically, I will be passing a counter (like parameter 1 or 2 or 3 or 4). First I will check for the... (1 Reply)
Discussion started by: filter
1 Replies

10. Shell Programming and Scripting

Help on Adding one counter loop at the end of each line in a file

Hello All, I have file a.txt I want to add a counter loop at the end of each line in a file ill explain: i have a site h**p://test.test=Elite#1 i want to add a a counter to the number at the end of the file, that it will be like this urlLink//test.test=Elite#1 urlLink//test.test=Elite#2... (3 Replies)
Discussion started by: nexsus
3 Replies
tm(n)							       Tcl Built-In Commands							     tm(n)

__________________________________________________________________________________________________________________________________________________

NAME
tm - Facilities for locating and loading of Tcl Modules SYNOPSIS
::tcl::tm::path add ?path...? ::tcl::tm::path remove ?path...? ::tcl::tm::path list ::tcl::tm::roots ?path...? _________________________________________________________________ DESCRIPTION
This document describes the facilities for locating and loading Tcl Modules (see MODULE DEFINITION for the definition of a Tcl Module). The following commands are supported: ::tcl::tm::path add ?path...? The paths are added at the head to the list of module paths, in order of appearance. This means that the last argument ends up as the new head of the list. The command enforces the restriction that no path may be an ancestor directory of any other path on the list. If any of the new paths violates this restriction an error will be raised, before any of the paths have been added. In other words, if only one path argument violates the restriction then none will be added. If a path is already present as is, no error will be raised and no action will be taken. Paths are searched later in the order of their appearance in the list. As they are added to the front of the list they are searched in reverse order of addition. In other words, the paths added last are looked at first. ::tcl::tm::path remove ?path...? Removes the paths from the list of module paths. The command silently ignores all paths which are not on the list. ::tcl::tm::path list Returns a list containing all registered module paths, in the order that they are searched for modules. ::tcl::tm::roots ?path...? Similar to path add, and layered on top of it. This command takes a list of paths, extends each with "tclX/site-tcl", and "tclX/X.y", for major version X of the Tcl interpreter and minor version y less than or equal to the minor version of the inter- preter, and adds the resulting set of paths to the list of paths to search. This command is used internally by the system to set up the system-specific default paths. The command has been exposed to allow a build system to define additional root paths beyond those described by this document. MODULE DEFINITION
A Tcl Module is a Tcl Package contained in a single file, and no other files required by it. This file has to be sourceable. In other words, a Tcl Module is always imported via: source module_file The load command is not directly used. This restriction is not an actual limitation, as some may believe. Ever since 8.4 the Tcl source command reads only until the first ^Z character. This allows us to combine an arbitrary Tcl script with arbitrary binary data into one file, where the script processes the attached data in any it chooses to fully import and activate the package. The name of a module file has to match the regular expression: ([_[:alpha:]][:_[:alnum:]]*)-([[:digit:]].*).tm The first capturing parentheses provides the name of the package, the second clause its version. In addition to matching the pattern, the extracted version number must not raise an error when used in the command: package vcompare $version 0 FINDING MODULES
The directory tree for storing Tcl modules is separate from other parts of the filesystem and independent of auto_path. Tcl Modules are searched for in all directories listed in the result of the command ::tcl::tm::path list. This is called the Module path. Neither the auto_path nor the tcl_pkgPath variables are used. All directories on the module path have to obey one restriction: For any two directories, neither is an ancestor directory of the other. This is required to avoid ambiguities in package naming. If for example the two directories "foo/" and "foo/cool" were on the path a pack- age named cool::ice could be found via the names cool::ice or ice, the latter potentially obscuring a package named ice, unqualified. Before the search is started, the name of the requested package is translated into a partial path, using the following algorithm: All occurrences of "::" in the package name are replaced by the appropriate directory separator character for the platform we are on. On Unix, for example, this is "/". Example: The requested package is encoding::base64. The generated partial path is "encoding/base64". After this translation the package is looked for in all module paths, by combining them one-by-one, first to last with the partial path to form a complete search pattern. Note that the search algorithm rejects all files where the filename does not match the regular expression given in the section MODULE DEFINITION. For the remaining files provide scripts are generated and added to the package ifneeded database. The algorithm falls back to the previous unknown handler when none of the found module files satisfy the request. If the request was satis- fied the fall-back is ignored. Note that packages in module form have no control over the index and provide scripts entered into the package database for them. For a module file MF the index script is always: package ifneeded PNAME PVERSION [list source MF] and the provide script embedded in the above is: source MF Both package name PNAME and package version PVERSION are extracted from the filename MF according to the definition below: MF = /module_path/PNAME'-PVERSION.tm Where PNAME' is the partial path of the module as defined in section FINDING MODULES, and translated into PNAME by changing all directory separators to "::", and module_path is the path (from the list of paths to search) that we found the module file under. Note also that we are here creating a connection between package names and paths. Tcl is case-sensitive when it comes to comparing package names, but there are filesystems which are not, like NTFS. Luckily these filesystems do store the case of the name, despite not using the information when comparing. Given the above we allow the names for packages in Tcl modules to have mixed-case, but also require that there are no collisions when com- paring names in a case-insensitive manner. In other words, if a package Foo is deployed in the form of a Tcl Module, packages like foo, fOo, etc. are not allowed anymore. DEFAULT PATHS
The default list of paths on the module path is computed by a tclsh as follows, where X is the major version of the Tcl interpreter and y is less than or equal to the minor version of the Tcl interpreter. All the default paths are added to the module path, even those paths which do not exist. Non-existent paths are filtered out during actual searches. This enables a user to create one of the paths searched when needed and all running applications will automatically pick up any modules placed in them. The paths are added in the order as they are listed below, and for lists of paths defined by an environment variable in the order they are found in the variable. SYSTEM SPECIFIC PATHS file normalize [info library]/../tclX/X.y In other words, the interpreter will look into a directory specified by its major version and whose minor versions are less than or equal to the minor version of the interpreter. For example for Tcl 8.4 the paths searched are: [info library]/../tcl8/8.4 [info library]/../tcl8/8.3 [info library]/../tcl8/8.2 [info library]/../tcl8/8.1 [info library]/../tcl8/8.0 This definition assumes that a package defined for Tcl X.y can also be used by all interpreters which have the same major number X and a minor number greater than y. file normalize EXEC/tclX/X.y Where EXEC is file normalize [info nameofexecutable]/../lib or file normalize [::tcl::pkgconfig get libdir,runtime] This sets of paths is handled equivalently to the set coming before, except that it is anchored in EXEC_PREFIX. For a build with PREFIX = EXEC_PREFIX the two sets are identical. SITE SPECIFIC PATHS file normalize [info library]/../tclX/site-tcl Note that this is always a single entry because X is always a specific value (the current major version of Tcl). USER SPECIFIC PATHS $::env(TCLX_y_TM_PATH) A list of paths, separated by either : (Unix) or ; (Windows). This is user and site specific as this environment variable can be set not only by the user's profile, but by system configuration scripts as well. $::env(TCLX.y_TM_PATH) Same meaning and content as the previous variable. However the use of dot '.' to separate major and minor version number makes this name less to non-portable and its use is discouraged. Support of this variable has been kept only for backward compatibility with the original specification, i.e. TIP 189. These paths are seen and therefore shared by all Tcl shells in the $::env(PATH) of the user. Note that X and y follow the general rules set out above. In other words, Tcl 8.4, for example, will look at these 5 environment variables: $::env(TCL8.4_TM_PATH) $::env(TCL8_4_TM_PATH) $::env(TCL8.3_TM_PATH) $::env(TCL8_3_TM_PATH) $::env(TCL8.2_TM_PATH) $::env(TCL8_2_TM_PATH) $::env(TCL8.1_TM_PATH) $::env(TCL8_1_TM_PATH) $::env(TCL8.0_TM_PATH) $::env(TCL8_0_TM_PATH) SEE ALSO
package(n), Tcl Improvement Proposal #189 "Tcl Modules" (online at http://tip.tcl.tk/189.html), Tcl Improvement Proposal #190 "Implementa- tion Choices for Tcl Modules" (online at http://tip.tcl.tk/190.html) KEYWORDS
modules, package Tcl 8.5 tm(n)
All times are GMT -4. The time now is 09:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy