file structure


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting file structure
# 1  
Old 10-15-2007
file structure

Hi,
Is there a command that can help me to determain a unix file structure ?
Thanks
# 2  
Old 10-15-2007
# 3  
Old 10-15-2007
Hi.

I interpreted this as wishing to know more about the contents of a file, whereas rexf apparently thought you were asking about the structure (hierarchy) of the filesystem.

Being more specific will help ... cheers, drl
# 4  
Old 10-15-2007
file structuer details

Hi
Im talking about text file.
For example if the file is comma delimited so it can look like this:
aaa,bbb,ccc,ddd
This is a simple case - but not my case.
My file is delimted somehow else.
How can i understand its structuer. I this there are spaces and tabs involved , but how can i be sure ?
Thanks
# 5  
Old 10-15-2007
Hi.

OK, that's better.

For text files, there are only guesses. Such files are essentially unstructured, as opposed to executable binary files.

You could use command head to visually inspect the file.

If your interest is determining the content automatically, I suggest you first look at man file -- file is a command that attempts to classify files based on content -- then come back to discuss it as necessary ... cheers, drl
# 6  
Old 10-16-2007
File structure

Hi,
Im looking for somthing much simple.
The file contain hidden characters like Tabs and so on.
I would like to open the file in the vi editor and to see all the hidden characters.
How this can be done ?
Thanks
# 7  
Old 10-16-2007
man od

man hexdump
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

FTP the whole file structure

Hi I need to ftp the whole file structure from various unix servers to a windows server I have a sub script for each machine and am using ftp -is:../%name%_prog.bat -i %server% on the windows side. The problem then comes with the mget command it gets all the files , but puts them in one... (4 Replies)
Discussion started by: madmacher
4 Replies

2. Red Hat

Copy certain file types recursively while maintaining file structure on destination?

Hi guys, I have just been bothered by a fairly small issue for some time now. I am trying to search (using find -name) for some .jpg files recursively. This is a Redhat environment with bash. I get this job done though I need to copy ALL of them and put them in a separate folder BUT I also... (1 Reply)
Discussion started by: rockf1bull
1 Replies

3. Programming

FILE structure - stdio.h

Hi All, I am new to linux and Programming. Inside the file stdio.h, there is a description about FILE structure. Which has many internal data members like _p, _r, _flags etc. I have written a sample code to find out the contents of the FILE structure. It opens a sample file ( FILE *fp ),... (5 Replies)
Discussion started by: nikunjbadjatya
5 Replies

4. Shell Programming and Scripting

case structure in .sh file

Hi, while true do printf "$FBOLD\nPlease enter the minutes (0-59): $FREG" read MIN case "$MIN" in ||s) break 2;; *) echo "" echo "Invalid minutes, please try again.";; esac done In the above... (4 Replies)
Discussion started by: milink
4 Replies

5. Shell Programming and Scripting

drop down structure in file

I have file like this 120, rahim, d40 115, rahul, d40 113, begum, d40 I want to group this file like this 120, rahim, d40 115, rahul, 113, begum, can any one help me on this thanks in advance (1 Reply)
Discussion started by: trichyselva
1 Replies

6. Programming

compare XML/flat file with UNIX file system structure

Before i start doing something, I wanted to know whether the approach to compare XML file with UNIX file system structure. I have a pre-configured file(contains a list of paths to executables) and i need to check against the UNIX directory structure. what are the various approches should i use ? I... (6 Replies)
Discussion started by: shafi2all
6 Replies

7. Shell Programming and Scripting

File structure comparison

To test server migration, we need to compare files under a directory in source and target servers. I need to verify if the below two directories on two servers are identical (i.e., contains same directories and files with same size. They may have multiple level sub-directories) ... (3 Replies)
Discussion started by: krishmaths
3 Replies

8. Programming

Search attributes in one structure using the values from another structure

Hello Groups I am trying to find out ways of comparing a value from a 'c' structure to a value in another 'C' structure. the 'C' structure can be a List or liked list as it contains lot many records. if we loop it in both the structures it is going to consume time. I am looking for a simple... (3 Replies)
Discussion started by: dhanamurthy
3 Replies

9. UNIX for Dummies Questions & Answers

TAR only the file structure

Hi, I need to tar only the file structures in Unix. I dont want to create the tar with the files in it. I tried to use a find with type -d and xargs the tar. It still tar's the file. Can anybody can help in this? Regards Anand (1 Reply)
Discussion started by: Andysundar
1 Replies

10. UNIX for Dummies Questions & Answers

Copying a Directory Structure to a new structure

Hi all Is it possible to copy a structure of a directory only. e.g. I have a file with the following entries that is a result of a find :- /dir1/dir2/file.dbf /dir1/dir2/dir3/file1.dbf /dir1/file.dbf I want to copy these to a directory and keep the structure however starting at a new dir... (8 Replies)
Discussion started by: jhansrod
8 Replies
Login or Register to Ask a Question