HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - Get the last delimited field in shell script !
 
Operating System - HP-UX
        1840126
        Members
    
    
        3320
        Online
    
    
        110161
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              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
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            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
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- 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-22-2003 11:32 PM
11-22-2003 11:32 PM
			
				
					
					
						Hi All,
I got some difficulties in getting the last delimited field in a shell script. I have tried "cut", "tr" and "awk"...but it doesn't seem to work.
E.g I got a file and each line of the file is a full path name of a file. Since each path will have different levels of subdirectories... It seems I can't simply get the file_name straight away !!
Consider the following content of the configuration file:
/a/b/c/d/test1.log
/f/g/h/test2.log
/x/y/test3.log
I would like to get all of the filenames out of the configuration file....therefore:
test1.log
test2.log
test3.log
Appreciated for you inputs.
Best Regards,
Chris,
					
				
			
			
				
			
			
				
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
I got some difficulties in getting the last delimited field in a shell script. I have tried "cut", "tr" and "awk"...but it doesn't seem to work.
E.g I got a file and each line of the file is a full path name of a file. Since each path will have different levels of subdirectories... It seems I can't simply get the file_name straight away !!
Consider the following content of the configuration file:
/a/b/c/d/test1.log
/f/g/h/test2.log
/x/y/test3.log
I would like to get all of the filenames out of the configuration file....therefore:
test1.log
test2.log
test3.log
Appreciated for you inputs.
Best Regards,
Chris,
Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-22-2003 11:46 PM
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-23-2003 01:08 AM
11-23-2003 01:08 AM
			
				
					
						
							Re: Get the last delimited field in shell script !
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Oh...thanks a lot John !!
Cheers,
Chris
		
		
	
	
	
Cheers,
Chris
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
11-23-2003 01:46 AM
11-23-2003 01:46 AM
			
				
					
						
							Re: Get the last delimited field in shell script !
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						a couple of more ways
awk -F"/" '{print $NF;}' yourfile
sed 's/.*\///' yourfile
while read line
print ${line##*/}
done
		
		
	
	
	
awk -F"/" '{print $NF;}' yourfile
sed 's/.*\///' yourfile
while read line
print ${line##*/}
done
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP