- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - Linux
 - >
 - Re: Remove ^M Character
 
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
 - Entry Storage Systems
 - Legacy
 - Midrange and Enterprise Storage
 - Storage Networking
 - HPE Nimble Storage
 
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
 - Appliance Servers
 - Alpha Servers
 - BackOffice Products
 - Internet Products
 - HPE 9000 and HPE e3000 Servers
 - Networking
 - Netservers
 - Secure OS Software for Linux
 - Server Management (Insight Manager 7)
 - Windows Server 2003
 - Operating System - Tru64 Unix
 - ProLiant Deployment and Provisioning
 - Linux-Based Community / Regional
 - Microsoft System Center Integration
 
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
 - Mark Topic as New
 - Mark Topic as Read
 - Float this Topic for Current User
 - Bookmark
 - Subscribe
 - Printer Friendly Page
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 03:34 PM
11-06-2005 03:34 PM
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 03:36 PM
11-06-2005 03:36 PM
			
				
					
						
							Re: Remove ^M Character
						
					
					
				
			
		
	
			
	
	
	
	
	
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 03:40 PM
- Tags:
 - sed
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 03:43 PM
11-06-2005 03:43 PM
			
				
					
						
							Re: Remove ^M Character
						
					
					
				
			
		
	
			
	
	
	
	
	
dos2ux file1 file2 > file1
- Tags:
 - dos2ux
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 03:48 PM
11-06-2005 03:48 PM
			
				
					
						
							Re: Remove ^M Character
						
					
					
				
			
		
	
			
	
	
	
	
	
:%s/\^M//g
Regards,
Syam
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 04:09 PM
11-06-2005 04:09 PM
			
				
					
						
							Re: Remove ^M Character
						
					
					
				
			
		
	
			
	
	
	
	
	
There are 3 solutions (possibly more)
1. within vi, type the following:
:1,$s/^V^M//
Note that the key sequence is CTRL+V and CTRL+M, only the "^M"
will appear on screen.
2. Use the tr command:
tr -d \\015 < filename > newfilename
3. Use the dos2ux utility:
dos2ux filename > newfilename
Hope this information can help you.
Cheers,
AW
- Tags:
 - tr
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 04:17 PM
11-06-2005 04:17 PM
			
				
					
						
							Re: Remove ^M Character
						
					
					
				
			
		
	
			
	
	
	
	
	
To get rid of ^M
in text files .
tr -d '^M'
But to get this
'^M' in the command
line:
Keep CTRL pressed
and then press v and m
--
Prabu.S
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 04:19 PM
11-06-2005 04:19 PM
			
				
					
						
							Re: Remove ^M Character
						
					
					
				
			
		
	
			
	
	
	
	
	
STRING STRIPPING
Remove all ^M and other control
characters from file ABC
strings ABC > ABC-good
--
Prabu.S
- Tags:
 - strings
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-06-2005 06:03 PM
11-06-2005 06:03 PM