Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how to list the files using File Descriptors Post 302195148 by shyjuezy on Wednesday 14th of May 2008 11:47:35 AM
Old 05-14-2008
Question how to list the files using File Descriptors

hello,

I have written a script named listall.sh with the following codes init.

#!/bin/bash
PATH="/proj/cmon/$1"
echo $PATH
if [ $# != 1 ]; then
echo "Usage: $0 ***"
exit 1
else
ls -l $PATH/*.sc
fi

Here there are 3 subdirectories (namely - src, data and jobs)under /proj/cmon, so if give something like "listall.sh src", it should list all the files in path "/proj/cmon/src", but I was getting listall.sh: line 8: ls: command not found. somebody please help me.
 

10 More Discussions You Might Find Interesting

1. Programming

File Descriptors

Hi, I have written a daemon process, to perform certain operations in the background. For this I have to close, the open file descriptors, Does anybody know how to find out the number of open file descriptors ? Thanks in Advance, Sheetal (2 Replies)
Discussion started by: s_chordia
2 Replies

2. UNIX for Advanced & Expert Users

File Descriptors

Hello all, A few questions on file descriptors ... scenario : Sun Ultra 30 with Sun OS 5.5.1 , E250 with Solaris 2.6 In one of my servers, the file descriptor status from the soft limit and hard limits are 64 and 1024 respectively for root user. Is the soft limit (64) represents the... (3 Replies)
Discussion started by: shibz
3 Replies

3. UNIX for Dummies Questions & Answers

file descriptors

i m trying to learn processes in unix and i've been reading this but i don't quite get it. its regarding file descriptors. : each is a part of file pointers, they point to another area. indexes into an Operating system maintained table called "file descriptor table". one table per process. may... (3 Replies)
Discussion started by: a25khan
3 Replies

4. UNIX for Advanced & Expert Users

File Descriptors + cron

Hi All, This thread is going to be a discussion basically bringing out more information from the experts on cron jobs and the associated file handles. So, here is the question. There is definitely a constant ' n ' as the maximum number of file handles alloted to a process ' p '. Will... (7 Replies)
Discussion started by: matrixmadhan
7 Replies

5. UNIX for Dummies Questions & Answers

Using File Descriptors, traverse a list

I have written this code, and according to my research it SHOULD be going down the list until it is finished, but I am getting blank feedback. Nothing is being output as far as I can tell. #!/bin/sh while echo Enter to start traversing read enter do read list <&3 echo $list done any... (2 Replies)
Discussion started by: MaestroRage
2 Replies

6. UNIX for Dummies Questions & Answers

how to access files via their descriptors?

hello, I'm new here, and new to Linux. I was wondering how to get hold of a certain file's descriptor, and how to use that number so that I access the contents of the file. please give me a full example, that is (1) how to determine the descriptor and (2) what magic symbols to use so that... (4 Replies)
Discussion started by: ialoq
4 Replies

7. HP-UX

exec and file descriptors

Hi, I speak and write english more or less, so I hope my asking be clear. :) In the company I am working, they are using control-m software to lunch shell scripts. So i put this command in all shell scripts: export LOGFILE_tmp=$PRODUC_DATA/tmp/${SCRIPT}_${PAIS}_`date... (0 Replies)
Discussion started by: anamcara
0 Replies

8. UNIX for Dummies Questions & Answers

Semaphores and File Descriptors

What is the difference between a file descriptor and a semaphore? My basic understanding is: - a file descriptor is a small positive integer that the system uses instead of the file name to identify an open file or socket. - a semaphore is a variable with a value that indicates the... (1 Reply)
Discussion started by: Mr_Webster
1 Replies

9. Shell Programming and Scripting

Read loop from two files using descriptors

What I would like to do is read each line in the atdinfile: A sample atdinfile would look like this: 651 652 653 654 655 656 657 658 659 660 661 664 665 666 667 668 (5 Replies)
Discussion started by: woodson2
5 Replies

10. Shell Programming and Scripting

Questions about file descriptors

Hi, I'm playing with KSH I entered following command in terminal { echo "stdout" >&1; echo "stderr" >&2; } > out And I get only stoud in a new file out. My question is: Where did my stderr vanish ? (5 Replies)
Discussion started by: solaris_user
5 Replies
Proj(3pm)						User Contributed Perl Documentation						 Proj(3pm)

NAME
PDL::GIS::Proj - PDL interface to the Proj4 projection library. DESCRIPTION
PDL interface to the Proj4 projection library. For more information on the proj library, see: http://www.remotesensing.org/proj/ AUTHOR
Judd Taylor, Orbital Systems, Ltd. judd dot t at orbitalsystems dot com DATE
18 March 2003 CHANGES
1.32 (29 March 2006) Judd Taylor - Getting ready to merge this into the PDL CVS. 1.31 (???) Judd Taylor - Can't remember what was in that version 1.30 (16 September 2003) Judd Taylor - The get_proj_info() function actually works now. 1.20 (24 April 2003) Judd Taylor - Added get_proj_info(). 1.10 (23 April 2003) Judd Taylor - Changed from using the proj_init() type API in projects.h to the - proj_init_plus() API in proj_api.h. The old one was not that stable... 1.00 (18 March 2003) Judd Taylor - Initial version COPYRIGHT NOTICE
Copyright 2003 Judd Taylor, USF Institute for Marine Remote Sensing (judd@marine.usf.edu). GPL Now! This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. SUBROUTINES
fwd_transform($lon(pdl), $lat(pdl), $params) Proj4 forward transformation $params is a string of the projection transformation parameters. Returns two pdls for x and y values respectively. The units are dependant on Proj4 behavior. They will be PDL->null if an error has occurred. BadDoc: Ignores bad elements of $lat and $lon, and sets the corresponding elements of $x and $y to BAD inv_transform($x(pdl), $y(pdl), $params) Proj4 inverse transformation $params is a string of the projection transformation parameters. Returns two pdls for lat and lon values respectively. The units are dependant on Proj4 behavior. They will be PDL->null if an error has occurred. BadDoc: Ignores bad elements of $lat and $lon, and sets the corresponding elements of $x and $y to BAD get_proj_info($params_string) Returns a string with information about what parameters proj will actually use, this includes defaults, and +init=file stuff. It's the same as running 'proj -v'. It uses the proj command line, so it might not work with all shells. I've tested it with bash. perl v5.14.2 2012-05-30 Proj(3pm)
All times are GMT -4. The time now is 02:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy