09-04-2008
I see nothing obviously wrong there.
8 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
I have a script in a directory -say users/me/test/
It looks like this:
# "bkup" - copies specified files to the user's ~/Backup
# directory after checking for name conflicts.
a=$(date +%T)
cp $1 ~/test/Backup/$1.$a
It copies file.txt from current directory and timestamps the name of it of... (4 Replies)
Discussion started by: coregan
4 Replies
2. Shell Programming and Scripting
Hi,
I've following code fragment as a part of 1 of my scripts.
Function is supposed to perform automated ftp to designated host.
Here are the details:-
#! /usr/bin/ksh
< some code>
perform_ftp()
{
#Assume that file to transfer is available in current directory
... (5 Replies)
Discussion started by: anijog
5 Replies
3. UNIX for Dummies Questions & Answers
Hi,
automated FTP that have error check and each product FTP will used the same userid/password to post(transfer) the file(s) from their <product> directory at UNIX to their <product> folder at Windows.
such senarios as follows:
NOTE:
=======
** Variable **
* The <product> is variable... (3 Replies)
Discussion started by: songtam
3 Replies
4. Shell Programming and Scripting
I have made a script to execute an IDL routine with the purpose to plot data on a fixed time.
The problem is that when I include this script in the crontab to run it every night, the IDL part doesn't work (the other commands, like getting data from the database, are carried out though).
This... (4 Replies)
Discussion started by: SharkM
4 Replies
5. What is on Your Mind?
I need opinion from other !
I finished high school for computer technician few months ago and now I can not find a job because I do not have any experience with servers , I know basic staff about Linux and Unix and Windows better (used three 4 years) (this is way I registered here at... (3 Replies)
Discussion started by: solaris_user
3 Replies
6. Shell Programming and Scripting
I need to do a work to my job, but i m new in script shell, someone can help with this.. :confused:
Description
Bsafe The command creates a backup directory of each month at the command line (arguments of the script). The names of directories to copy will always be specified for the... (4 Replies)
Discussion started by: strshel
4 Replies
7. Shell Programming and Scripting
Hi guys, not sure if this would be the right place for this but I dont where else it would go... I'm new to Unix too, so please bare with me :)
I guess first up some background on the situation. We have some scripts that run as cron jobs which monitor and check the health, etc of our servers.... (2 Replies)
Discussion started by: BrianD
2 Replies
8. Shell Programming and Scripting
Hi all -
I have a script which runs on the OS level, but refuses to run as a cron or as an Oracle job. The Script is pretty straight forward:
#!/bin/bash
username="MyUsername"
host="Remote.server"
path="Remote.directory/files/*.*"
password="MyPassword"
expect -c "
spawn /usr/bin/scp... (3 Replies)
Discussion started by: danimaltex
3 Replies
LEARN ABOUT OPENDARWIN
tcl_wrongnumargs
Tcl_WrongNumArgs(3) Tcl Library Procedures Tcl_WrongNumArgs(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tcl_WrongNumArgs - generate standard error message for wrong number of arguments
SYNOPSIS
#include <tcl.h>
Tcl_WrongNumArgs(interp, objc, objv, message)
ARGUMENTS
Tcl_Interp interp (in) Interpreter in which error will be reported: error message gets stored in its result object.
int objc (in) Number of leading arguments from objv to include in error message.
Tcl_Obj *CONST objv[] (in) Arguments to command that had the wrong number of arguments.
CONST char *message (in) Additional error information to print after leading arguments from objv. This typically gives the
acceptable syntax of the command. This argument may be NULL.
_________________________________________________________________
DESCRIPTION
Tcl_WrongNumArgs is a utility procedure that is invoked by command procedures when they discover that they have received the wrong number
of arguments. Tcl_WrongNumArgs generates a standard error message and stores it in the result object of interp. The message includes the
objc initial elements of objv plus message. For example, if objv consists of the values foo and bar, objc is 1, and message is ``fileName
count'' then interp's result object will be set to the following string:
wrong # args: should be "foo fileName count"
If objc is 2, the result will be set to the following string:
wrong # args: should be "foo bar fileName count"
Objc is usually 1, but may be 2 or more for commands like string and the Tk widget commands, which use the first argument as a subcommand.
Some of the objects in the objv array may be abbreviations for a subcommand. The command Tcl_GetIndexFromObj will convert the abbreviated
string object into an indexObject. If an error occurs in the parsing of the subcommand we would like to use the full subcommand name
rather than the abbreviation. If the Tcl_WrongNumArgs command finds any indexObjects in the objv array it will use the full subcommand
name in the error message instead of the abbreviated name that was originally passed in. Using the above example, lets assume that bar is
actually an abbreviation for barfly and the object is now an indexObject because it was passed to Tcl_GetIndexFromObj. In this case the
error message would be:
wrong # args: should be "foo barfly fileName count"
SEE ALSO
Tcl_GetIndexFromObj
KEYWORDS
command, error message, wrong number of arguments
Tcl 8.0 Tcl_WrongNumArgs(3)