Sponsored Content
Full Discussion: find without pathname
Top Forums UNIX for Dummies Questions & Answers find without pathname Post 23688 by MBGPS on Thursday 27th of June 2002 10:14:38 AM
Old 06-27-2002
Cheers perdarbo. This seems to work.

What exactly is this doing? Are there any shortfalls?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to get the last dir from a pathname using IFS

I have a question, and don't know my way around with it. :( If I have a pathname say. i have the following pathname: /users/classA/tests how can I get only 'tests' out of that path. I know we have to use IFS=/ ... but next, i am clueless :confused: I also know that I can use... (2 Replies)
Discussion started by: sam2004
2 Replies

2. Shell Programming and Scripting

Getting pathname variables with ksh

With C Shell you can get the root, head, tail and extension of a pathname by using pathname variable modifiers. Example Script: #! /bin/csh set pathvar=/home/WSJ091305.txt echo $pathvar:r echo $pathvar:h echo $pathvar:t echo $pathvar:e The result of executing this script is: ... (7 Replies)
Discussion started by: BCarlson
7 Replies

3. Shell Programming and Scripting

How to parse a pathname in csh?

I am wondering if there's an easy way to extract individual directories from a pathname in a csh script. For example, if I have a shell variable such as set datadirlist = /space/quimby/1 can I get 'space', 'quimby', and '1' and assign it individually to another variable? Any suggestions... (2 Replies)
Discussion started by: same1290
2 Replies

4. UNIX for Advanced & Expert Users

how to find out pathname from inode number

Hi all when I execute pmap command on one of my daemon process, I am able to see the following output. Address Kbytes RSS Anon Locked Mode Mapped File 00010000 40 40 - - r-x-- irs026bmd 00028000 56 56 16 - rwx-- irs026bmd 00036000... (3 Replies)
Discussion started by: axes
3 Replies

5. Shell Programming and Scripting

eliminate pathname from the file name in the o/p

Hi, Im finding some files form a specific path and den writing those files to another file as: find /SYS/admin/data/xml -name '*.xml' -type f ! -newer file1 -print >>out.xml and when im doing cat out.xml im getting like dis: ... (2 Replies)
Discussion started by: ss_ss
2 Replies

6. UNIX for Dummies Questions & Answers

Using find with -prune to skip a specific pathname using Solaris

I'm trying to prune out the findings of a certain directory path and have something like the following workiing on Linux (Linux 2.6.9-67.0.7.ELsmp #1 SMP x86_64): find . -path 'test/tmp' -prune -o -print I now need to have this working on sun/solaris (SunOS 5.8 Generic_117350-34 sun4u sparc... (12 Replies)
Discussion started by: antonino
12 Replies

7. Shell Programming and Scripting

Trim pathname of the file

I am capturing the files in a directory to an array. I have 2 arrays with list of files in two different directories. Both the directories are supposed to have the same number of files and filenames. I want to check that the same file exists in both the directories. After I capture the... (1 Reply)
Discussion started by: Sangtha
1 Replies

8. Shell Programming and Scripting

SED - Pathname problem

Hello. After looking through the forum I am trying without success to remove lines from a file each time that ligne contains a pattern. As this is running in script, I am using some variables: The command : sed '/pattern/d' source_file > corrected_source_file In the script sed ... (2 Replies)
Discussion started by: jcdole
2 Replies

9. UNIX for Dummies Questions & Answers

Why Do You Need the Explicit Pathname to Execute?

Hi! If your working directory contains a file you want to work on, or give as an argument, you don't have to give the explicit pathname, just the filename, like so: $ vi while_loop.ksh But if you want execute an executable file, you must supply the explicate pathname, like so: ./while_loop.ksh... (20 Replies)
Discussion started by: sudon't
20 Replies

10. UNIX for Beginners Questions & Answers

Rename files with its pathname

Hi, I have a few csv files within the directory structure as shown below /tmp/user/Proj/V1/data/Common1/Zip1/123.csv /tmp/user/Proj/V1/data/Common2/Zip2/3453.csv /tmp/user/Proj/V1/data/Common2/Zip2/1234.csv and so on... I need to get these csv files and move to another dir... (5 Replies)
Discussion started by: Jag02
5 Replies
GLDISPATCHCOMPUTE(3G)						   OpenGL Manual					     GLDISPATCHCOMPUTE(3G)

NAME
glDispatchCompute - launch one or more compute work groups C SPECIFICATION
void glDispatchCompute(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); PARAMETERS
num_groups_x The number of work groups to be launched in the X dimension. num_groups_y The number of work groups to be launched in the Y dimension. num_groups_z The number of work groups to be launched in the Z dimension. DESCRIPTION
glDispatchCompute launches one or more compute work groups. Each work group is processed by the active program object for the compute shader stage. While the individual shader invocations within a work group are executed as a unit, work groups are executed completely independently and in unspecified order. num_groups_x, num_groups_y and num_groups_z specify the number of local work groups that will be dispatched in the X, Y and Z dimensions, respectively. ERRORS
GL_INVALID_OPERATION is generated if there is no active program for the compute shader stage. GL_INVALID_VALUE is generated if any of num_groups_x, num_groups_y, or num_groups_z is greater than or equal to the maximum work-group count for the corresponding dimension. ASSOCIATED GETS
glGet() with argument GL_MAX_COMPUTE_WORK_GROUP_COUNT SEE ALSO
glDispatchComputeIndirect(). COPYRIGHT
Copyright (C) 2012 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. AUTHORS
opengl.org opengl.org 06/10/2014 GLDISPATCHCOMPUTE(3G)
All times are GMT -4. The time now is 04:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy