Sponsored Content
Top Forums Shell Programming and Scripting Convert comma seperated file to line seperated. Post 302477922 by jim mcnamara on Monday 6th of December 2010 05:54:12 PM
Old 12-06-2010
Code:
tr -s ','  '\n' < inputfile >  outputfile

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to load comma seperated values file (*.csv) into Oracle table

Hi all I need to input values in a .csv file into my Oracle table running in Unix, I wonder what would be the command to do so... The values are recorded in an excel file and I tried using a formatted text file to do so but failed because one of the field is simply too large to fit in the... (5 Replies)
Discussion started by: handynas
5 Replies

2. UNIX for Advanced & Expert Users

How to load comma seperated values file (*.csv) into Oracle table

Hi all I need to input values in a .csv file into my Oracle table running in Unix, I wonder what would be the command to do so... The values are recorded in an excel file and I tried using a formatted text file to do so but failed because one of the field is simply too large to fit in the... (4 Replies)
Discussion started by: handynas
4 Replies

3. Shell Programming and Scripting

how to convert the result of the select query to comma seperated data - urgent pls

how to convert the result of the select query to comma seperated data and put in a .csv file using korn shell. Pls help me as its very urgent. Thanks, Hema. (1 Reply)
Discussion started by: Hemamalini
1 Replies

4. UNIX for Dummies Questions & Answers

Search and then concat 4m other file (comma seperated)

My query is now a bit simplified. file1.txt names; ID; value1 ; values N; ABC; 1 ; a18 ; ... CDF; 2 ; b16 ; .. ABC; 1 ; c13 ; ...... EFG; 3 ;d12 ; ... file2.txt ID(Unique);smVals; smVal1; smVal N; 1; ...; ...; ...; 2; ..; ..; ..; 3; ..; ..; ..; ... (1 Reply)
Discussion started by: szchmaltz
1 Replies

5. Shell Programming and Scripting

Removing blank lines from comma seperated and space seperated file.

Hi, I want to remove empty/blank lines from comma seperated and space seperated files Thanks all for help (11 Replies)
Discussion started by: pinnacle
11 Replies

6. Shell Programming and Scripting

Trimming fields for comma or pipe seperated file

I have file like this FileA: abc , "helloworld" , america def,asia, japan ghi, africa, ipl Output Needed: abc,"helloworld",america def,asia,japan ghi,africa,ipl I would like to implement using awk. I want to trim each field for its leading and trailing spaces. (7 Replies)
Discussion started by: pinnacle
7 Replies

7. UNIX for Dummies Questions & Answers

Need help removing leading spaces from one field in comma seperated file

Using awk or sed, I'd like to remove leading spaces after a comma and before a right justified number in field 6. Sounds simple but I can't find a solution. Each field's formatting must stay intact. Input: 40,123456-02,160,05/24/2012,02/13/1977, 10699.15,0 Output:... (5 Replies)
Discussion started by: Scottie1954
5 Replies

8. Shell Programming and Scripting

Need Help in rearranging the content of a file comma seperated

I have a file with the below content a = test1 b = test2 a = test3 b= test4 c = test6 b = test5 d = test7 d = test9 Need the output to be as follows a = test1,test3 b = test2, test5 c = test6 d = test7, test9 (4 Replies)
Discussion started by: iron_michael86
4 Replies

9. Shell Programming and Scripting

Convert listner.log to csv format with comma seperated

Hi All, I am new to shell scripting i am trying to convert the listner.log to csv which can be inturn converted to excel for easy reading. i used this command awk '/SID=/ && /HOST=/ && /PORT=/ && /USER=/ { i=match($0,"SID="); i=i+RLENGTH; h0=substr($0,i); i=match(h0,")");... (6 Replies)
Discussion started by: skoshekay
6 Replies

10. Shell Programming and Scripting

Seperated a Column from 'ESC' Character seperated file

Hi Experts I have an escape seperated fields in the unix file. And in the below format file I need to extract the first column. Please help its urgent. cat -v op.dat | head 24397028^ I want to extract the file in below format ( with only first column ) 24397028 2439707 thanks. ... (6 Replies)
Discussion started by: neha_suri06
6 Replies
diskowner(1M)															     diskowner(1M)

NAME
diskowner - retrieve the owner of a storage device SYNOPSIS
path DESCRIPTION
The command is used to retrieve the subsystem, if any, which is using the specified path. The command is intended to help prevent users from overwriting storage that is already in use. The command will print out the owner of the path, or if no owner was found. A storage device is considered owned by a subsystem if it has been formatted by that subsystem. For example, if a disk contains a VxFS filesystem, but is not mounted or in use, it is still considered owned by the VxFS subsystem. If the path specified is invalid or inaccessible, an error message will be printed. Options and Arguments The command recognizes the following options and arguments: path The path name to the storage device. The path may be a symbolic link, as long as it points to a storage device, such as a file, disk, or logical volume. List all the owners of the specified path, seperated by commas Produce a compact output that is easily parsed by other scripts and programs. When used with option, displays all the owners seperated by dots This format is described in the section below. Output from diskowner displays the following possible output: owner The owner of the given path. owner can be one of the following: The path is not owned by any known subsystem. The path is part of an LVM volume group. The path is part of a VxVM volume group. The path has a VxFS filesystem on it. The path has a HFS filesystem on it. The path is being used as a swap device. The path is being used as a dump device. The path is part of an Oracle database. The path has EFI partitions on it. message An error message displayed when the given path is invalid or inaccessible. Compact Listing The option generates a compact, colon delimited listing that is easy to parse. The output format is: and so forth. The option, when used with the option, produces this output format: and so forth. The current command prints out the keys and values listed below. In the future, new keys and/or values may be added to the output. or or where path is the pathname passed as argument owner is the owner of the given path message is an error message when given path is invalid or inaccessible. n is number of owners of the given path EXTERNAL INFLUENCES
Environment Variables determines the language in which messages are displayed. If is not specified or is null, it defaults to "C" (see lang(5)). If any internationalization variable contains an invalid setting, all internationalization variables default to "C" (see environ(5)). RETURN VALUE
Upon completion, returns one of the following values: The path is not owned (the owner is The path is already owned by a subsystem. The path does not exist. Invalid options or library version incompatible. The path cannot be opened due to an I/O error. The path cannot be opened due to insufficient permissions. The path format is invalid. EXAMPLES
Display the owner of a disk path: Display the owner of a logical volume in compact output: Display all the owners of a disk path: Display all the owners of a logical volume in compact output: SEE ALSO
crashconf(1M), df(1M), swapinfo(1M), vgdisplay(1M), vxvmboot(1M), vxassist(1M), fstab(4). diskowner(1M)
All times are GMT -4. The time now is 04:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy