Sponsored Content
Top Forums Shell Programming and Scripting fixperms on folders in shell script Post 302529024 by DGPickett on Wednesday 8th of June 2011 11:03:59 AM
Old 06-08-2011
Where's the right man for fixperms? I found http://uw714doc.sco.com/en/man/html.1M/fixperm.1M.html but it does not take a dir, it takes a specfile.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to Archive Folders in T-Shell

Hi i am new to Unix Shell Programming... i m just a beginner and i m training myself in Unix.... I need a sample code to archive folders in my Windows OS using Unix commands... Can someone Help me? (1 Reply)
Discussion started by: aegan
1 Replies

2. Shell Programming and Scripting

Shell script to check if any file exists in 4 folders

Hi All, working on AIX 5.3. Requirement is: Shell script in ksh to check if any file exists in 4 folders as below: 1. /FILE/INB/INT1 2. /FILE/INB/INT2 3. /FILE/INB/INT3 4. /FILE/INB/INT4 Thanks a lot for your time! a1_win. (3 Replies)
Discussion started by: a1_win
3 Replies

3. Shell Programming and Scripting

runnning a shell script in multiple folders

Hey everyone, I'm fairly new to both unix and shell scripts. Right now I have a script that I can run in one folder (if a certain text file is there, do one thing, if it's not, do something else). I want to modify this to run in multiple directories. My setup is: a company directory, and within it... (2 Replies)
Discussion started by: melearlin
2 Replies

4. Shell Programming and Scripting

Shell script to move files to 3 different folders

Hi guys: I've got this problem, I want to move a bunch of files to 3 different folders, without any specific order, and I'm trying to automatize it with a shell script. I'm a newbie at shell scripting so this is my first try: #!/bin/bash COUNTER=`ls -1 | wc -l` while do ARRAY=(... (11 Replies)
Discussion started by: wretchedmike
11 Replies

5. Shell Programming and Scripting

Shell script to arrange files into several folders

Hello this is the script Im working on I have a picture collection that I rescued from a hard drive and there are thousands of pictures saved in one folder. What I need is to create several folders and put lets say around 200 pictures in each folder. At the end instead of having one huge... (8 Replies)
Discussion started by: kizofilax
8 Replies

6. UNIX for Dummies Questions & Answers

Searching for folders/parent folders not files.

Hello again, A little while back I got help with creating a command to search all directories and sub directories for files from daystart of day x. I'm wondering if there is a command that I've overlooked that may be able to search for / write folder names to an output file which ideally... (2 Replies)
Discussion started by: Aussiemick
2 Replies

7. Shell Programming and Scripting

Urgent- shell script to create sub folders

Hi All, Could any one help me with a shell script which will create different sub folders in a folder and of which the sub folders names should be taken from a text file. Thanks (1 Reply)
Discussion started by: chetansingh23
1 Replies

8. Shell Programming and Scripting

automating a shell script to run across all the folders

I would like to know how to automate an already made shell script (all the steps of all the commands done on a specific folder) by utilizing a list (a .txt) of all folder names that the shell scripts goes and executes For example: In the working folder called main/ there are subfolders named... (3 Replies)
Discussion started by: Lucky Ali
3 Replies

9. Shell Programming and Scripting

Shell Script to delete files within a particular time frame under multiple sub folders

Greetings! I'm looking for starting information for a shell script. Here's my scenario: I have multiple folders(100) for example: /www/test/applications/app1/logs /www/test/applications/app2/logs Within these folders there are log files files that need to be deleted after a month. ... (3 Replies)
Discussion started by: whysolucky
3 Replies

10. Shell Programming and Scripting

Shell Script for enter folders and join file

Hello everyone. I have a dlink cam that save recordings splitted for hours. Each hour folder contain a lot of small avi files. Repository has the following directories structure: \_20140101/ \_ 01 \_a.avi \_b.avi \_ 02 \_c.avi ... (3 Replies)
Discussion started by: setterx
3 Replies
DACSCRED(1)						       DACS Commands Manual						       DACSCRED(1)

NAME
dacscred - acquire and manage DACS credentials SYNOPSIS
dacscred [-dd dir] [-ll log_level] [-v] op [opargs] DESCRIPTION
This program is part of the DACS suite. The dacscred utility supports simple DACS authentication, optionally storing the returned DACS identities securely for future use by non-browser applications. Basic maintenance operations are provided for this cache of credentials. DACS per-user information, including the cache, is kept within a directory that must be owned by the user. Additionally, the directory must be accessible only by the user. DACS will refuse to use any per-user information if file permissions are inappropriate. If this directory is not specified on the command line, the following is the default behaviour. If an environment variable named DACSDIR is available, its value is used for the name of this directory; otherwise, DACS will use a directory named .dacs in the user's home directory. The contents of the cache file are encrypted. A password must be provided when the cache is created and before each subsequent access. Currently, AES-128-CFB is used along with a SHA1-based HMAC[1]. Security A jurisdiction may reject credentials that are used from an IP address that does not match the IP address from which the credentials were initially requested (see the VERIFY_IP configuration directive). This means that if a cache is moved to a different host, the credentials may be treated as invalid if they are used from that host. OPTIONS
The following command line flags are common to all operations: -dd directory The DACS directory to use instead of the default is directory. -ll log_level Set the debugging output level to log_level (see dacs(1)[2]). The default level is warn. -v The -v flag bumps the debugging output level to debug or (if repeated) trace. The op argument specifies the operation to be performed. The following operations are available: Try to authenticate as username by invoking dacs_authenticate[3] at the URL auth-URL. username has the syntax [[federation]::]jurisdiction:username (the jurisdiction component of the name must be provided; see dacs(1)[4]). An SSL connection is always used for this purpose. If authentication is successful and the -s flag is not given, the (username, auth-URL) pair will be recorded; subsequent invocations of the command can omit the auth-URL argument if it is unchanged. If the -p flag is given, the user is prompted for a password to pass to dacs_authenticate; if -pf is given instead, a password is read from file (stdin is read if file is "-"). If aux is given, it is used as the value of the AUXILIARY argument to dacs_authenticate. The -caf (-ccf) flag identifies file as a file of CA certificates (client certificates) in PEM format, respectively; see sslclient(1)[5]. New credentials replace old credentials in the cache. Credentials and authentication mappings in the cache are not automatically managed, so the cache may contain credentials that have expired. The following example prompts the user for a password before trying to authenticate as DSS:smith: % dacscred auth -p DSS:smith https://dss.example.com/cgi-bin/dacs/dacs_authenticate The following example might be used within a script to test if $passwd is the correct password for DSS:smith: % echo $passwd | dacscred auth -s -pf - DSS:smith https://dss.example.com/cgi-bin/dacs/dacs_authenticate The exit status will be 0 only if the password is correct. Delete all credentials with a name that matches a regular expression (see regex(3)[6]). Print all credentials to stdout that should be sent along with a service request to the given URL. If no URL is given, print all credentials in the cache. Note that these credentials represent DACS identities and should be kept secret. List the names of all credentials in the cache, by default. This is equivalent to providing the cred argument. If the auth argument is given, a list of identities and the auth-URL arguments that were used to authenticate those identities is displayed. If a regex is given, the list is limited to those identities matched by it (cred behaviour) or those "username auth-URL" strings that match it (auth behaviour). Change the password that protects the cache. The current password must first be provided. DIAGNOSTICS
The program exits 0 if everything was fine, 1 if an error occurred. BUGS
This command only supplies partial support for interacting with dacs_authenticate. SEE ALSO
dacs_authenticate(8)[3] AUTHOR
Distributed Systems Software (www.dss.ca[7]) COPYING
Copyright2003-2012 Distributed Systems Software. See the LICENSE[8] file that accompanies the distribution for licensing information. NOTES
1. HMAC http://www.rfc-editor.org/rfc/rfc2104.txt 2. dacs(1) http://dacs.dss.ca/man/dacs.1.html 3. dacs_authenticate http://dacs.dss.ca/man/dacs_authenticate.8.html 4. dacs(1) http://dacs.dss.ca/man/dacs.1.html#naming 5. sslclient(1) http://dacs.dss.ca/man/sslclient.1.html 6. regex(3) http://www.freebsd.org/cgi/man.cgi?query=regex&apropos=0&sektion=3&manpath=FreeBSD+9.0-RELEASE&format=html 7. www.dss.ca http://www.dss.ca 8. LICENSE http://dacs.dss.ca/man/../misc/LICENSE DACS 1.4.27b 10/22/2012 DACSCRED(1)
All times are GMT -4. The time now is 06:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy