Sponsored Content
Full Discussion: Check the Usability of files
Top Forums Shell Programming and Scripting Check the Usability of files Post 302244437 by karansachdeva on Wednesday 8th of October 2008 03:20:15 AM
Old 10-08-2008
Sorry for above confusion..i am not only just looking for the file types ...i am also looking for the entire file name as well whichever file type it might be

Thanks

Karan
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Check 2 files ???

Hi all, I know how to count lines, count byte of a file, but really dont know how to compare line , I am newbie and hope you can help me to learn more about UNIX. Here is my problem. ==== How : 1. File A (Flatfile with NAME|DATE|ID1|ID2|ID3|ID4|ID5)... (3 Replies)
Discussion started by: sabercats
3 Replies

2. Shell Programming and Scripting

How to check files and move the results to differents files?

Hi, I am a newbie to shell scripting. here is my objective: 1)The shell program should take 2 parameters - ie-> DestinationFolder, WebFolder 2)Destination folder contains few files that has to has be verified and deleted. 3)WebFolder is a folder containing a list of master files 4)It... (1 Reply)
Discussion started by: sandhyagupta
1 Replies

3. Shell Programming and Scripting

how to check files

Hi, I have a dir in which I need to check for 3 files. and naming for three files are as below. fileone_yyyy_mm_dd.dat filetwo_yyyy_mm_dd.dat filethree_yyyy_mm_dd.datand YYYY_mm_dd will change everyday as the date changes. I need to check everyday all these files are existing or not... (4 Replies)
Discussion started by: ravinunna
4 Replies

4. Shell Programming and Scripting

need a shell script to extract the files from source file and check whether those files existonserve

Hi, I am new to shell scripting.Please help me on this.I am using solaris 10 OS and shell i am using is # echo $0 -sh My requirement is i have source file say makefile.I need to extract files with extensions (.c |.cxx |.h |.hxx |.sc) from the makefile.after doing so i need to check whether... (13 Replies)
Discussion started by: muraliinfy04
13 Replies

5. Shell Programming and Scripting

Perl code to check date and check files in particular dir

Hi Experts, I am checking how to get day in Perl. If it is “Monday” I need to process…below is the pseudo code. Can you please prove the code for below condition. if (today=="Monday" ) { while (current_time LESS THAN 9:01 AM) ... (1 Reply)
Discussion started by: ajaypatil_am
1 Replies

6. Shell Programming and Scripting

Kindly check it: Camparison of files only column1 of 2 files

Hi all, I have 2 files in which i have to find commom entries in column 1 an dif soemthing is common write other data of both files in front of it mentioned. Gene symbol and disease name column 1 column2 ARFGEF2 CAD DDEF2 CAD PSCD3 CAD PSCD4 CAD CAMK1... (15 Replies)
Discussion started by: manigrover
15 Replies

7. Shell Programming and Scripting

Check files and archive the files using sftp

Hi, I have to check the files in another server using sftp to do that, below is the code i am going with #!/bin/bash export SRC_FOLDER=$1 export ARC_FOLDER=$2 HOST=as07u3456 USER=relfag sftp ${USER}@${HOST} <<EOF cd $SRC_FOLDER/DSCOR ls bye EOF echo "done" whatever the files i... (8 Replies)
Discussion started by: ursrami
8 Replies

8. Shell Programming and Scripting

How to get CRC check sum of files in java EAR file without extracting .jar/.war files to disk.?

unzip -v gives CRC info of each file in a zip(in my case .EAR) file. # unzip -v my-application.ear Archive: my-application.ear Length Method Size Cmpr Date Time CRC-32 Name -------- ------ ------- ---- ---------- ----- -------- ---- 197981 Defl:N 183708 7%... (1 Reply)
Discussion started by: kchinnam
1 Replies

9. What is on Your Mind?

Google Search Console - Mobile Usability - No Errors or Issues - New Milestone

For the first time in the history of the site Google Search Console (GSC) has unix.com showing "no mobile viewability errors". This is no small achievement considering the hundreds of thousand of lines of legacy code we run at a site which has been around much longer than Facebook or LinkedIn: ... (0 Replies)
Discussion started by: Neo
0 Replies
ELFEDIT(1)						       GNU Development Tools							ELFEDIT(1)

NAME
elfedit - Update the ELF header of ELF files. SYNOPSIS
elfedit [--input-mach=machine] [--input-type=type] [--input-osabi=osabi] --output-mach=machine --output-type=type --output-osabi=osabi [-v|--version] [-h|--help] elffile... DESCRIPTION
elfedit updates the ELF header of ELF files which have the matching ELF machine and file types. The options control how and which fields in the ELF header should be updated. elffile... are the ELF files to be updated. 32-bit and 64-bit ELF files are supported, as are archives containing ELF files. OPTIONS
The long and short forms of options, shown here as alternatives, are equivalent. At least one of the --output-mach, --output-type and --output-osabi options must be given. --input-mach=machine Set the matching input ELF machine type to machine. If --input-mach isn't specified, it will match any ELF machine types. The supported ELF machine types are, L1OM, K1OM and x86-64. --output-mach=machine Change the ELF machine type in the ELF header to machine. The supported ELF machine types are the same as --input-mach. --input-type=type Set the matching input ELF file type to type. If --input-type isn't specified, it will match any ELF file types. The supported ELF file types are, rel, exec and dyn. --output-type=type Change the ELF file type in the ELF header to type. The supported ELF types are the same as --input-type. --input-osabi=osabi Set the matching input ELF file OSABI to osabi. If --input-osabi isn't specified, it will match any ELF OSABIs. The supported ELF OSABIs are, none, HPUX, NetBSD, GNU, Linux (alias for GNU), Solaris, AIX, Irix, FreeBSD, TRU64, Modesto, OpenBSD, OpenVMS, NSK, AROS and FenixOS. --output-osabi=osabi Change the ELF OSABI in the ELF header to osabi. The supported ELF OSABI are the same as --input-osabi. -v --version Display the version number of elfedit. -h --help Display the command line options understood by elfedit. @file Read command-line options from file. The options read are inserted in place of the original @file option. If file does not exist, or cannot be read, then the option will be treated literally, and not removed. Options in file are separated by whitespace. A whitespace character may be included in an option by surrounding the entire option in either single or double quotes. Any character (including a backslash) may be included by prefixing the character to be included with a backslash. The file may itself contain additional @file options; any such options will be processed recursively. SEE ALSO
readelf(1), and the Info entries for binutils. COPYRIGHT
Copyright (c) 1991-2013 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". binutils-2.23.52.0.1 2014-06-10 ELFEDIT(1)
All times are GMT -4. The time now is 09:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy