Sponsored Content
Full Discussion: File Report Generation
Top Forums Shell Programming and Scripting File Report Generation Post 302584671 by yashwantkumar on Saturday 24th of December 2011 11:17:22 AM
Old 12-24-2011
File Report Generation

hi all
i need to generate a report file that contains the following details of files present in a directory.
1. File name
2.Complete path for each files and directory
3.File size
4.Days older

example i have a directory testing that contains sub-directories and some files.
i need to make a report file File_report.txt in below format
Quote:
File Name path file_size days_older
a /home/user/test/sub-dir 10k 234
b /home/user/testing/b 10k 64
.
.

Thanks
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Oracle Report generation

Hi, I am beginner in shell programming.In a shell script i found a call to a script 'runrep25m',which i think is to generate oracle reports?Could anyone help me by providing some details about its usage With Thanks & Regards Dileep (7 Replies)
Discussion started by: DILEEP410
7 Replies

2. Shell Programming and Scripting

awk- report generation from input file

I have input file with below content: Person: Name: Firstname1 lastname1 Address: 111, Straat City : Hilversum Person: Name : Fistname2 lastname2 Address: 222, street Cit: Bussum Person: Name : Firstname2 lastname3 Address: 333, station straat City: Amsterdam I need... (6 Replies)
Discussion started by: McLan
6 Replies

3. UNIX for Dummies Questions & Answers

report generation

Hello, I got a requirement in writing a sheel script in unix, please help me out the requirement is there are two folders Folder1 and Folder2 and there are same files in the different folders. like file1,file2 in folder1 and file1 and file2 in folder2. I would like to compare all the... (2 Replies)
Discussion started by: gmahesh2k
2 Replies

4. Shell Programming and Scripting

Report generation

Hello, I got a requirement in writing a KSH script in unix, please help me out the requirement is there are two folders Folder1 and Folder2 and there are same files in the different folders. like file1,file2 in folder1 and file1 and file2 in folder2. I would like to compare all the similar... (3 Replies)
Discussion started by: gmahesh2k
3 Replies

5. Shell Programming and Scripting

Parsing of file for Report Generation (String parsing and splitting)

Hey guys, I have this file generated by me... i want to create some HTML output from it. The problem is that i am really confused about how do I go about reading the file. The file is in the following format: TID1 Name1 ATime=xx AResult=yyy AExpected=yyy BTime=xx BResult=yyy... (8 Replies)
Discussion started by: umar.shaikh
8 Replies

6. Shell Programming and Scripting

Report Generation with Grep

All, I am pretty new to Unix Environment. I am not sure if my requirement can be accomplished in Unix. I did try searching this forum and others but could not get an answer. Requirement is explained below: I have a set of files in a folder. file1_unload file2_unload file3_unload... (7 Replies)
Discussion started by: bharath.gct
7 Replies

7. Shell Programming and Scripting

Disk report generation problem

Hello everyone, I have a list of inputs as below. My logic is to get the particular powerdisk which matches for ASM disk which means take the major & minor number of each asm disk and matches with powerdisk info then get the particular powerdisk $ ls -l /dev/asm_* ---> ASM disk info... (11 Replies)
Discussion started by: kannan84
11 Replies

8. Shell Programming and Scripting

Report generation based on certain conditions

Hi I recently joined a project where I have been asked to generate a report using shell script accessing UNIX box. I have no idea on how to do it as I am a beginner and learning shell scripts. Suppose I have a XML: Code: ... (3 Replies)
Discussion started by: vat1kor
3 Replies

9. Shell Programming and Scripting

Report generation using perl script

Hi, I have a perl script to read the log file and create a report from it. I have the script file and log file in a different directories. Now i have pipe the log file data to the perl script to create the report (HMTL file). I am using the below command this isn't working tail -f... (4 Replies)
Discussion started by: vel4ever
4 Replies

10. UNIX for Beginners Questions & Answers

Report generation using script

Hi all I have a unix script that generates a report with the following information: uptime, mounted file systems, disk usage (> 90% --> critical, <75%-90%> --> warning, < 75% healthy), Mem usage, CPU usage and load average. But I would like to create one single report containing all this... (5 Replies)
Discussion started by: fretagi
5 Replies
ost::File(3)						     Library Functions Manual						      ost::File(3)

NAME
ost::File - SYNOPSIS
#include <file.h> Inherited by ost::Dir, and ost::RandomFile. Classes struct _fcb Public Types enum Error { errSuccess = 0, errNotOpened, errMapFailed, errInitFailed, errOpenDenied, errOpenFailed, errOpenInUse, errReadInterrupted, errReadIncomplete, errReadFailure, errWriteInterrupted, errWriteIncomplete, errWriteFailure, errLockFailure, errExtended } enum Access { accessReadOnly = O_RDONLY, accessWriteOnly = O_WRONLY, accessReadWrite = O_RDWR } enum Open { openReadOnly = O_RDONLY, openWriteOnly = O_WRONLY, openReadWrite = O_RDWR, openAppend = O_WRONLY | O_APPEND, openSync = O_RDWR, openTruncate = O_RDWR | O_TRUNC } enum Attr { attrInvalid = 0, attrPrivate = 0400 | 0200, attrGroup = attrPrivate | 0040 | 0020, attrPublic = attrGroup | 0004 | 0002 } enum Mapping { mappedRead = accessReadOnly, mappedWrite = accessWriteOnly, mappedReadWrite = accessReadWrite } enum Complete { completionImmediate, completionDelayed, completionDeferred } typedef enum Error Error typedef enum Access Access typedef enum Open Open typedef enum Attr Attr typedef enum Complete Complete typedef enum Mapping Mapping Static Public Member Functions static const char * getExtension (const char *path) static const char * getFilename (const char *path) static char * getFilename (const char *path, char *buffer, size_t size=64) static char * getDirname (const char *path, char *buffer, size_t size=256) static char * getRealpath (const char *path, char *buffer, size_t size=256) Protected Types typedef struct ost::File::_fcb fcb_t Member Typedef Documentation typedef enum Access ost::File::Access typedef enum Attr ost::File::Attr typedef enum Complete ost::File::Complete typedef enum Error ost::File::Error typedef struct ost::File::_fcb ost::File::fcb_t [protected] typedef enum Mapping ost::File::Mapping typedef enum Open ost::File::Open Member Enumeration Documentation enum ost::File::Access Enumerator: accessReadOnly accessWriteOnly accessReadWrite enum ost::File::Attr Enumerator: attrInvalid attrPrivate attrGroup attrPublic enum ost::File::Complete Enumerator: completionImmediate completionDelayed completionDeferred enum ost::File::Error Enumerator: errSuccess errNotOpened errMapFailed errInitFailed errOpenDenied errOpenFailed errOpenInUse errReadInterrupted errReadIncomplete errReadFailure errWriteInterrupted errWriteIncomplete errWriteFailure errLockFailure errExtended enum ost::File::Mapping Enumerator: mappedRead mappedWrite mappedReadWrite enum ost::File::Open Enumerator: openReadOnly openWriteOnly openReadWrite openAppend openSync openTruncate Member Function Documentation static char* ost::File::getDirname (const char *path, char *buffer, size_tsize = 256) [static] static const char* ost::File::getExtension (const char *path) [static] static const char* ost::File::getFilename (const char *path) [static] static char* ost::File::getFilename (const char *path, char *buffer, size_tsize = 64) [static] static char* ost::File::getRealpath (const char *path, char *buffer, size_tsize = 256) [static] Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::File(3)
All times are GMT -4. The time now is 05:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy