Access Issue - dir and script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Access Issue - dir and script
# 1  
Old 02-14-2013
Access Issue - dir and script

Hi All,

I got access in UNIX box from our client.

I am able to create folder, files, script etc.. in that folder.

here is the issue:

my login/base folder is = /home/ace

I have created 2 folders within it

Script
ScriptLog

in Script folder i have created 2 .ksh file

Parameter.ksh
PointRun.ksh

1. Parameter.ksh = contains system level variables. i.e. credentials, Oracle variables which requires to be able to connect to Oracle from local dir etc..
All these variables are exported..

2. PointRun.ksh

I am caling Parameter.ksh file in PointRun.ksh to get all variable values defined in Parameter.ksh in PointRun.ksh
ksh /home/ace/Script/Parameter.ksh or ./Parameter.ksh

Issue:1 - This is not happening.

I am also trying to create log file in ScriptLog folder.

Issue:2 - It says Access denied.

I have given full access to all my folders and scripts with chmod 777 command.

I know, this is a access level issue. but do not know exactly about it.

I need to send mail to client, asking for access . What do not know what access i should ask for..
# 2  
Old 02-14-2013
Well, to get environment you must 'source' a file, '. file_path'. It means redirect the current shell stdin there until eof or exit. Thus, variables are set in this shell, and if exported, will be present in the child processes. You are getting in trouble by one of these three:
  • not 'dotting' your environment file,
  • not exporting your variables or
  • not using good paths, absolute (start with /) or relative to your run time current working directory $PWD.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Access the oldest file in a dir

I have to move files (one by one) from one dir to another, in such a way that the oldest file should be moved first followed by the latest file. The source dir (from where I am moving files) may contains a minimum of 20K files at any point of time. I am not able to use "ls -ltr" as it throws error... (6 Replies)
Discussion started by: rajesh8s
6 Replies

2. Shell Programming and Scripting

A script to find dir, delete files in, and then del dir?

Hello!! I have directories from 2008, with files in them. I want to create a script that will find the directoried from 2008 (example directory: drwxr-xr-x 2 isplan users 1024 Nov 21 2008 FILES_112108), delete the files within those directories and then delete the directories... (3 Replies)
Discussion started by: bigben1220
3 Replies

3. UNIX for Dummies Questions & Answers

Will i see a file/dir I don't have read access to

Hi all, if I have a dir with a mixture of files and directories in it and one of the directories *only* has read permission for the owner and I am not the owner - will I see it with an 'ls -la'. I do not have access to a unix box at present to try this out. Any thoughts gratefully received (1 Reply)
Discussion started by: ajcannon
1 Replies

4. UNIX for Dummies Questions & Answers

Restrict user access to their home dir

Hi! i'm using FreeBSD 6.2 and hosting my pc to frens in particular of sensitive information being saved to the PC, i would like to know is it possible for me to restrict user access to their /home dir. only? and also, i wanted to restrict them listing files under /etc thanks all! (10 Replies)
Discussion started by: rdns
10 Replies

5. UNIX for Advanced & Expert Users

user has access only to one dir

Hello i want to ask how can i let a newly created user to access only one directory and not any other directory at all.: (1 Reply)
Discussion started by: learn82
1 Replies

6. Shell Programming and Scripting

User dir access using ~ in sh

I am writing code to copy file if user dir exists. Code snippet : #!/bin/sh if then cp ~user1/file file else cp ~user2/file file fi This code works if shell is ksh but not if shell is sh. Can anyone suggest how this can work in sh script? Thanks, Ashish (1 Reply)
Discussion started by: Ashishp
1 Replies

7. UNIX for Dummies Questions & Answers

Setting up FTP access to my Tomcat Dir

Hi Guys, Im trying to set up FTP to my Apache Tomcat dir on my server so my web designer can FTP in and look at things in a live environment. However at first I couldn't write to the dir, so i change some permissions, and now I cant access it at all! Here is my LS -all output: ... (4 Replies)
Discussion started by: boarderstu
4 Replies

8. Shell Programming and Scripting

a script to clone a dir tree, & overwrite the dir struct elsewhere?

hi all, i'm looking for a bash or tcsh script that will clone an empty dir tree 'over' another tree ... specifically, i'd like to: (1) specify a src directory (2) list the directory tree/hiearchy beneath that src dir, w/o files -- just the dirs (3) clone that same, empty dir hierarchy to... (2 Replies)
Discussion started by: OpenMacNews
2 Replies

9. Shell Programming and Scripting

script to go to a different dir to run a commandline prompt in that dir

Hi, I need to know how I'll be able to write a script that can goto a different dir where I don't have access to read,write and execute and also to run a commandline prompt in that dir with one file whose path has to be specified in that command. Will I be able to do this? Any ideas or... (2 Replies)
Discussion started by: ann_124
2 Replies

10. UNIX for Dummies Questions & Answers

dir access

How do I give specific user the ablity to create, delete, rename, and alter in a specific directory. I am using redhad 7.2 and would like to give a specific user the rights to a dirc in the main www directory. (1 Reply)
Discussion started by: macdonto
1 Replies
Login or Register to Ask a Question