Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Compare two directory and find differents Post 303045801 by indeed_1 on Monday 13th of April 2020 05:47:01 PM
Old 04-13-2020
How does it work recursive? -r ? There are some different directions into the source and destination that need to check.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Directory compare script

Hello, I am looking for a script, or pointer to an approach to creating a script, that will compare two versions of a codebase and output a third directory structure containing only the files that differ between the two. I use diff quite often, but it will only create patch files (AFAIK). Does... (3 Replies)
Discussion started by: jwilliams108
3 Replies

2. Shell Programming and Scripting

Script That Can navigate to 3 differents directory & remove files under them

Hi I am Trying to Write a script that can goto 4 different directorys on the server & remove the Files older then 30 days ?? /logs logs1 logs2 logs3 Now I need to remove files under logs1 logs2 logs3 which are older then 30 days whose name stat 'sit' , 'mig','bld' . in... (3 Replies)
Discussion started by: Beginner123
3 Replies

3. Shell Programming and Scripting

How i can obtain differents data on a single pass?

#!/bin/bash for i in `ls -c1 /usr/share/applications` do #name=`cat /usr/share/applications/$i | grep ^Name= | cut -d = -f2` #categories=`cat /usr/share/applications/$i | grep ^Categories= | sed 's/;/=/g' | cut -d = -f2` name=$(grep ^Name= /usr/share/applications/$i | cut -d = -f2)... (12 Replies)
Discussion started by: alexscript
12 Replies

4. Shell Programming and Scripting

Compare new version of two directory

How to compare new version exist of two path directory. for e.g., path1 - /user/path/test/ path2 - /user/path/score/ If its exist new version then copy that new version into the first path directroy. How will do this. (3 Replies)
Discussion started by: roy1912
3 Replies

5. Shell Programming and Scripting

Extract sequences of bytes from binary for differents blocks

Hello to all, I would like to search sequences of bytes inside big binary file. The bin file contains blocks of information, each block begins is estructured as follow: 1- Each block begins with the hex 32 (1 byte) and ends with FF. After the FF of the last block, it follows 33. 2- Next... (59 Replies)
Discussion started by: Ophiuchus
59 Replies

6. Shell Programming and Scripting

Find every directory named XYZ under the DVLP directory

I only want to find files under each branch of the directory tree inside directories named XYZ and there are multiple XYZ directories? (7 Replies)
Discussion started by: emc^24sho
7 Replies

7. Programming

Query SQL get two values differents from the same columns

Hi, I have 2 different values in the same column and two different values in other column Query 1 ins name value 1 Test 12345 1 TestV1 12/10/2014 8 Test 85435 8 TestV1 11/11/2005 9 Test 42232 9 TestV1 19/10/2000 6 Test 54321... (6 Replies)
Discussion started by: faka
6 Replies

8. Shell Programming and Scripting

awk - matching on 2 columns for differents lines

Given this file (I separated them in block to make my explanation clearer): 92157768877;Sof_deme_Fort_Email_am_%yyyy%%mm%%dd%;EMAIL;20/02/2015;1;0;0 92157768877;Sof_trav_Fort_Email_am_%yyyy%%mm%%dd%;EMAIL;20/02/2015;1;0;0 91231838895;Sof_deme_faible_Email_am;EMAIL;26/01/2015;1 0;0... (1 Reply)
Discussion started by: Andy_K
1 Replies

9. Shell Programming and Scripting

Compare directory dates

hi, I need to know if a specific directory exists in a folder named after the date of yesterday (02/06/2015) The problem is simple but not how to do it. :confused:i= date -d "yesterday" '%Y-%m-%d' <- the format of directory is 2015-06-02 if in /var/logroot/index exist directory whit... (4 Replies)
Discussion started by: tmeto
4 Replies

10. UNIX for Beginners Questions & Answers

How to find and get a file in an entire directory with an excluded directory specified?

How to get a file 'zlib.h' in an entire directory with an excluded directory specified lives under that starting directory by using find command, as it failed on: $ find . -name 'zlib.h' -a -ipath 'CHROME.TMP' -prune -o -print it'll just list entirely up (2 Replies)
Discussion started by: abdulbadii
2 Replies
GLBLENDEQUATION(3G)													       GLBLENDEQUATION(3G)

NAME
glBlendEquation - set the blend equation C SPECIFICATION
void glBlendEquation( GLenum mode ) PARAMETERS
mode specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX. DESCRIPTION
The blend equation determines how a new pixel (the ``source'' color) is combined with a pixel already in the framebuffer (the ``destina- tion'' color). GL_MIN sets the blend equation so that each component of the result color is the minimum of the corresponding components of the source and destination colors. GL_MAX sets the blend equation so that each component of the result color is the maximum of the corresponding components of the source and destination colors. The remaining blend equations use the source and destination blend factors specified by glBlendFunc. See glBlendFunc for a description of the various blend factors. In the equations that follow, source and destination color components are referred to as (Rs, Gs, Bs, As ) and (Rd, Gd, Bd, Ad ), respec- tively. The result color is referred to as (Rr, Gr, Br, Ar ). The source and destination blend factors are denoted (sR, sG, sB, sA ) and (dR, dG, dB, dA ), respectively. For these equations all color components are understood to have values in the range [0, 1]. GL_FUNC_ADD sets the blend equation so that the source and destination data are added. Each component of the source color is multiplied by the corresponding source factor, then each component of the destination color is multiplied by the corresponding destination factor. The result is the componentwise sum of the two products, clamped to the range [0, 1]. Rr = min (1, Rs sR + Rd dR ) Gr = min (1, Gs sG + Gd dG ) Br = min (1, Bs sB + Bd dB ) Ar = min (1, As sA + Ad dA ) GL_FUNC_SUBTRACT Is like GL_FUNC_ADD except the product of the destination factor and the destination color is componentwise subtracted from the product of the source factor and the source color. The result is clamped to the range [0, 1]. Rr = max (0 , Rs sR - Rd dR ) Gr = max (0 , Gs sG - Gd dG ) Br = max (0 , Bs sB - Bd dB ) Ar = max (0 , As sA - Ad dA ) GL_FUNC_REVERSE_SUBTRACT Is like GL_FUNC_ADD except the product of the source factor and the source color is componentwise subtracted from the product of the destination factor and the destination color. The result is clamped to the range [0, 1]. Rr = max (0 , Rd dR - Rs sR ) Gr = max (0 , Gd dG - Gs sG ) Br = max (0 , Bd dB - Bs sB ) Ar = max (0 , Ad dA - As sA ) The GL_MIN and GL_MAX equations are useful for applications that analyze image data (image thresholding against a constant color, for example). The GL_FUNC_ADD equation is useful for antialiasing and trans- parency, among other things. Initially, the blend equation is set to GL_FUNC_ADD. NOTES
glBlendEquation is part of the GL_ARB_imaging subset. glBlendEquation is present only if GL_ARB_imaging is returned when glGetString is called with GL_EXTENSIONS as its argument. The GL_MIN, and GL_MAX equations do not use the source or destination factors, only the source and destination colors. ERRORS
GL_INVALID_ENUM is generated if mode is not one of GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MAX, or GL_MIN. GL_INVALID_OPERATION is generated if glBlendEquation is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGet with an argument of GL_BLEND_EQUATION SEE ALSO
glGetString, glBlendColor, glBlendFunc GLBLENDEQUATION(3G)
All times are GMT -4. The time now is 08:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy