Sponsored Content
Full Discussion: recursion script problem
Top Forums Shell Programming and Scripting recursion script problem Post 302336052 by research3 on Tuesday 21st of July 2009 05:33:52 AM
Old 07-21-2009
hi magesh,

function without name ???

is that possible??

reg,
research3
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

recursion

I'm using the UNIX csh and i wish to use recursion to nav my way up (or down as it is) a given folder. My little test script is called "r" and takes a folder as argv (or $1) #!/bin/tcsh -f set allFiles = `ls -A $argv` cd $argv while ($#allFiles) if (-d... (1 Reply)
Discussion started by: gsjf
1 Replies

2. Shell Programming and Scripting

recursion too deep

I am running a korn shell script which has a recursive function. The script ran for 117 iterations and ended up with the following error "recursion too deep". what should be done to avert this? Thanks in advance Swamy p.s. I am on UNIX MPRAS V4 (3 Replies)
Discussion started by: swamy455
3 Replies

3. Shell Programming and Scripting

Problem with recursion in subdirectories

Hello ! I need some help with my simple bash script. This script removes all files ( with name given in $1 ) in current dir and subdirectories . The problem is with first loop in the script ( for file in * ; do ) . When I run the sript in my home directory this script display sometimes( ... (5 Replies)
Discussion started by: scotty_123
5 Replies

4. Shell Programming and Scripting

Help Help Help in recursion

Hello every body. I am trying to find the factorial using the following code. But it is giving the syntax error. I tried very much but in vain. Thanks in advance for helping me factorial() { if then y=`expr $1 - 1` x=$(( $1 \* factorial $y ))... (6 Replies)
Discussion started by: murtaza
6 Replies

5. Programming

Recursion

I want to halt a tail recursive function after certain validation. I want to come out of entire recursion without unwinding phase. How can i achieve that . The coding is done in C language. (5 Replies)
Discussion started by: joshighanshyam
5 Replies

6. UNIX for Dummies Questions & Answers

Function Recursion Shift Problem

Hi, I'm trying to create a script that will display the contents of the users directories, but i'm confused about how to incorporate the shift properly. The problem I'm getting with my script is that it goes throught the first couple of directories but then returns an error as it loses the... (10 Replies)
Discussion started by: nuvpal
10 Replies

7. Shell Programming and Scripting

Shell script to generate Fibonacci series using recursion

I am facing problem with Shell script to generate Fibonacci series using recursion i.e. recursive function. Here is my script: #!/bin/sh fibo() { no=$1 if ; then return 0 elif ; then return 1 else a1=`expr $no - 1` fibo $a1 ... (10 Replies)
Discussion started by: Tapas Bose
10 Replies

8. Programming

C Recursion (explain)

Hi, Question: how come the output is like that? Can explain to me abit. I am learning C. Thanks! #include <stdio.h> #include <string.h> void printit(char line_of_char, int index); int main() { char line_of_char; int index = -1; strcpy(line_of_char, "This is a string."); ... (5 Replies)
Discussion started by: seede
5 Replies

9. Shell Programming and Scripting

script recursion

Can someone please explain me why the following script calls it self recursively: #!/bin/bash echo Called $0 while this not: #!/bin/bash echo Called $($0) Thanks (6 Replies)
Discussion started by: superpointer
6 Replies

10. UNIX for Dummies Questions & Answers

Recursion in a bash script

So the problem I am having is recursion with in bash. Specifically the program ideally takes either the current or provided directory, lists out everything in that directory, if it finds another directory the script should call itself and go into that directory. I managed to get it to dive into the... (6 Replies)
Discussion started by: mistsong1
6 Replies
MAUTIL(1)							   User Commands							 MAUTIL(1)

NAME
mautil - Mono.Addins Setup Utility SYNOPSIS
mautil [options] <command> [arguments] DESCRIPTION
The mautil tool works with Mono.Addins repositories and packages. OPTIONS
--registry, -reg Specify add-in registry path --path, -p Specify startup path -v Verbose output Add-in commands: install, i Installs add-ins. uninstall, u Uninstalls add-ins. check-install, ci Checks installed add-ins. update, up Updates installed add-ins. list, l Lists installed add-ins. list-av, la Lists add-ins available in registered repositories. list-update, lu Lists available add-in updates. Repository Commands: rep-add, ra Registers repositories. rep-remove, rr Unregisters repositories. rep-update, ru Updates the lists of available addins. rep-list, rl Lists registered repositories. Add-in Registry Commands: reg-update, rgu Updates the add-in registry. reg-build, rgb Rebuilds the add-in registry. info Prints information about an add-in. Packaging Commands: rep-build, rb Creates a repository index file for a directory structure. pack, p Creates a package from an add-in configuration file. help, h Shows help about a command. Debug Commands: dump-file Prints the contents of a registry file. SEE ALSO
mono(1). Mono.Addins May 2008 MAUTIL(1)
All times are GMT -4. The time now is 05:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy