Sponsored Content
Top Forums Shell Programming and Scripting Converting windows format file to unix format using script Post 302482005 by cero on Monday 20th of December 2010 10:54:20 AM
Old 12-20-2010
Another way would be to use the file-command:
Code:
for f in *
do
   ft=$(file $f)
   if [ "$ft" = "$f: ASCII text" ]
   then
       # do your stuff here
   fi
done

 

10 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Converting BMP to BM (or other unix format)

Hey pllz, ive got a little problem, i want to convert a bmp of gif or jpg to an unix format (bm) anybody got any suggestions ? greets\EJ (1 Reply)
Discussion started by: EJ =)
1 Replies

2. Programming

converting unix timestamp into readable format using c++

hi everyone, im new here and am in desperate need of help. I want to convert my 32 bit unix time stamp ' 45d732f6' into a readable format (Sat, 17 February 2007 16:53:10 UTC) using c++. I have looked around the interent but i just cant make sense of anything. All examples i can find just... (3 Replies)
Discussion started by: uselessprog
3 Replies

3. Shell Programming and Scripting

Converting file format

My input file is Pipe delimited with 10 fields, I am trying to create a tab delimited output file with 6 fields from the provided input file. Below is sample data Input file abc||2|PIN|num||||www.123.com|abc@123.com| bcd||2|PIN|num|||||abc@123.com|... (3 Replies)
Discussion started by: pasupuleti81
3 Replies

4. UNIX for Dummies Questions & Answers

Convert UNIX file format to PC format

Hi All, Is there any way to convert a file which is in UNIX format to a PC format.... Flip command can be used , apart form this command can we have any other way.... like usinf "awk" etc ..... main purpose of not using flip is that my Kshell doesnot support this comamnd.... (1 Reply)
Discussion started by: Samtel
1 Replies

5. Shell Programming and Scripting

Convert UNIX file format to PC format

Hi All, Is there any way to convert a file which is in UNIX format to a PC format.... Flip command can be used , apart form this command can we have any other way.... like usinf "awk" etc ..... main purpose of not using flip is that my Kshell doesnot support this comamnd.... (2 Replies)
Discussion started by: Samtel
2 Replies

6. Shell Programming and Scripting

Script for converting a pdf to book format

Hello, excuse my English... I'm trying to do a nautilus-script to transform a normal A4 pdf to another pdf with book format, ready to be printed (double sided). I mean, the script put pages in order and also put 2 pages per horizontal A4 page (p.e.: a pdf with 8 pages would look like: 8-1, 2-7,... (2 Replies)
Discussion started by: dokan
2 Replies

7. Shell Programming and Scripting

Script for converting a pdf to book format: an update

With reference to , the script posted by dokan fails via a Bash syntax error because my version of pdftk 1.41 has multiple lines matching to "Num", which are stored in the TOTAL variable. If we modify the first non-ignored line of the script from # Original TOTAL=$( pdftk "$1" dump_data output |... (1 Reply)
Discussion started by: aldebrn
1 Replies

8. UNIX for Dummies Questions & Answers

converting scripts from dos 2 unix format

Hi, I am new to shell scripting and exploring it , I have developed few sample shell script but I have developed them on windows xp notepad and then saving them on folder and then testing them on cywgin and running perfectly...but these scripts are in dos format and I want to convert them in unix... (1 Reply)
Discussion started by: rahul125
1 Replies

9. Shell Programming and Scripting

Need help in converting the file format

Hi All, I need help in converting the mentioned file format into desired output format using awk. Could anyone help me in this? Below is the input.. Date Account Campaign AdGroup Keyword Conversion Revenue Var1 Var2 Var3 Var4 Var5 10 20 30 ... (8 Replies)
Discussion started by: Ravi S M
8 Replies

10. UNIX for Dummies Questions & Answers

help required in converting a file format

My file format: -------------------------------------------------- Complete Consistency Check Valid Area : VALID:VALID Started by : esanwad Started at : Thu Dec 11 16:04:46 2014 CNA version : R21H04_EC08 Check range : AREA VALID/VALID ... (4 Replies)
Discussion started by: Gautam Banerjee
4 Replies
isdnformat(5)						    Linux System Administration 					     isdnformat(5)

NAME
isdnformat - common isdn config file format DESCRIPTION
This man page describes the format of all isdn config files. FORMAT
Empty lines are ignored. If a # is encountered, this character and the rest of the line is ignored (it's considered a comment). You can prepend a backslash to prevent this and use the # character. If the last character of a line is a backslash , the next line is a continuation of the current line. The file format is like smb.conf or win.ini: there are sections and entries within the section. However, the syntax was expanded with sub- sections; these can be nested as often as you like. All whitespace (space and tabs) at the end of the line are ignored. Section and entry names are case insensitive. Values are case sensitive, of course (the case is preserved). Section and entry names may not use the characters "*?|&/"; if one of these is encountered, it is ignored. At the beginning of the line you may use as much whitespace as you like. A section has the format "[" NAME "]". You may use whitespace between the braces and the name, or none at all. An entry has the format ENTRY "=" VALUE. You may use whitespace before and after the equal sign, or none at all. A subsection starts with ENTRY "=" "{" and ends with "}". You may use sections, entries and subsections between the start and the end tag. Beware: unlike samba or windows the semicolon is not used for comments ! You can use INCLUDE(File) to include a file. If the filename is not absolute, it's considered relative to the directory of the including document. You may use it anywhere in a file, but there may be no space characters in the file! All subsections started in an include file must end in that include file, so the number of opened and closed brackets must match. Beware: recursive including will cause the program to break. The library does not prevent this. AUTHOR
This manual page was written by Andreas Jellinghaus <aj@dungeon.inka.de>, for Debian GNU/Linux and isdn4linux. Now maintained by Paul Slootman <paul@isdn4linux.de>. ISDN 4 Linux 3.1pre4 2000/09/15 isdnformat(5)
All times are GMT -4. The time now is 06:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy