Cut the first 100 characters of file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Cut the first 100 characters of file
# 1  
Old 09-03-2014
Cut the first 100 characters of file

Hello all,

I have a file and would like to cut the first 100 characters of the first line. I tried it with the ‘cut’-command:

Code:
cut –c100- $file > $file.tmp

But this does not work, because it will cut the first 100 characters of each line. But I need to cut them only from the beginning of the file – so only from the first line.

Do you have a solution for this?

Last edited by vbe; 09-03-2014 at 05:15 AM.. Reason: Do you mind stop using fancy fonts and colour, thanks
# 2  
Old 09-03-2014
If you want only the first line then:
Code:
 head -1 file

and only the first 100 char you could:
Code:
 head -1 file | cut -c1-100

# 3  
Old 09-03-2014
Oh, sorry for the misunderstanding.

When I will do it with the 'head'-command I would get this line cut of 100 characters. Thats for the line ok.

But my problem is that I have a file with a size of maybe 1GB. And it could be possible that the content is only 1 line. All what I want is to cut the first 100 characters of the file. This can I do with the command:

Code:
 
cut –c100- $file > $file.tmp

But I do not know if I have only 1 line in file. It could also have more lines in it. And then this command won't work anymore, because it will cut the first 100 characters of each line.

So, what should I do? Is there a command to do it for both situations? Or in minumum I would like to know how can I cut the first 100 characters of the first line of file if there are more lines?

I could do it in this way

Code:
 
line=$(head -1 $file)
sed '1d' $file > $file.body
echo $line > $file.head 
cat $file.head  $file.body > $file

But it there maybe another way, because it would be better to do it with 1 statement... Smilie
# 4  
Old 09-03-2014
Try:
Code:
sed '1s/.\{100\}//' file

Not that this will cut off 100 characters of the first line only, not of the file. Is that what you are looking for?
# 5  
Old 09-03-2014
Code:
head -c 100 filename

This will give the first 100 characters either single or multiple lines.
This User Gave Thanks to Girish19 For This Post:
# 6  
Old 09-03-2014
Note: "head -c" cuts off bytes, not characters.
This User Gave Thanks to Scrutinizer For This Post:
# 7  
Old 09-03-2014
Hello all,

thanks for you help - with these hints I could solve the problem.

@Scrutinizer: Thats exactly what I need. Strictly speaking I needed it for a file, but to redirect the output to a file is no problem:

Code:
sed '1s/.\{100\}//' file  > file.tmp

@Girish19: With this statement I have the first 100 characters, but my problem was to have a file without these 100 characters. But nevertheless this is a very useful hint to extract the first 100 characters. I could use it at another position in my script.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

cut certain characters for each line in a file

Hi Everyone, i have a file 1.txt <a><a"" dd>aaaaauweopriuew</f><">!(^)!</aa></ff> <a><a"" dd>bbbbbuweopriuew</f><">!(^*)!</aa></ff> i know i can use perl -p -i -e "s/>aaaaa/aa/g" 1.txt perl -p -i -e "s/>bbbbb/bb/g" 1.txt to acheive only keep the first two characters of the five characters,... (4 Replies)
Discussion started by: jimmy_y
4 Replies

2. Shell Programming and Scripting

Cut last 13 characters and take the rest of the file name

Hi, I would like to cut last 13 characters of a file name and take the rename the file name as follows: Input: A.DAT20110517033732 Output: A.DAT I have tried the following command and cut last 13 characters. echo A.DAT20110517033732 | awk '{print substr($0, length($0)-13)}' ... (3 Replies)
Discussion started by: pyaranoid
3 Replies

3. Shell Programming and Scripting

Cut last 7 characters of a variable

I need to cut the last seven characters of a variable length variable. The variable may be 7 characters or 70. I need to always be able to grab the last 7 characters. I looked at the cut command but it always seems to want to start at the beginning of a line, not the end and count backwards. ... (5 Replies)
Discussion started by: kblawson14
5 Replies

4. Shell Programming and Scripting

Cut the last 15 characters off

Hi Gurus, I am trying to execute the below command. However the output shows the value + path of the folder where the command is being executed. But I am only interested in the value but not the path. du -hs /aps/inf/SeLogs when I execute the above command, output is 32G... (5 Replies)
Discussion started by: svajhala
5 Replies

5. AIX

How to cut a flat file according to a certain number of characters?

hello everybody i am looking for a shell to cut a flat file (with a long unique line) according to a certain number of characters and redirect every result to an output file. here is an example MyFile : 12 3 456 12 3 456 12 3 456 ..... and i took every 9-characters including BLANKS... (6 Replies)
Discussion started by: fastlane3000
6 Replies

6. Shell Programming and Scripting

Need to cut first 21 and 32-25 characters from file

Guys, can you help me in doing cut first 21 and 32-35 characters from file. I tried with cut -c to cut first 21 characters ,It is succeeded. But i need both first 21 and 32-35. (1 Reply)
Discussion started by: mohan_xunil
1 Replies

7. Shell Programming and Scripting

cut between characters of a file

Hi All, Need to convert file names to upper case using tr command in Unix. In a folder -> /apps/dd01/misc there are two files like: pi-abcd567sd.pdf pi-efgh1.pdf The output of should be like: pi-ABCD567SD.pdf pi-EFGH1.pdf I have used the command to work as below: for f... (3 Replies)
Discussion started by: a1_win
3 Replies

8. Shell Programming and Scripting

cut 1st 2 characters off all line1st in file

I know this sounds simple, but I have a logfile with > something > something_else > another_entry ... how do I cut the first 2 characters off the left side? I tried to use cut -c 1-2 somefile > someotherfile but that just cut gave me the 2 left characters, I want to cut those out... (2 Replies)
Discussion started by: unclecameron
2 Replies

9. Shell Programming and Scripting

how to cut first 3 characters of each line in a file

Hi Friends I have a file like sample1.txt ------------ 10998909.txt 10898990.txt 1898772222.txt 8980000000000.txt I need to take first 3 characters of each line in a file and i need to print it ' like loop 109 108 189 898 (7 Replies)
Discussion started by: kittusri9
7 Replies

10. UNIX for Dummies Questions & Answers

cut first 4 characters from a line

Please let me know how to cut first four characters from a line in UNIX after grepping the file.. (5 Replies)
Discussion started by: kaushikraman
5 Replies
Login or Register to Ask a Question