or do:
awk 'BEGIN{FS="/";}{print $NR;}' /path/to/file.txt
or
#!/bin/csh -f
foreach file (`cat /path/to/file.txt`)
echo $file:t
end
Main Topics
Browse All TopicsHi Experts
I have a file that contains lines of text that I want to use in a shell scripts, the problem is I dont know how to get the subtring I want from each line. the file structure is as follows:
jms/hh/ht
jms/ff/rr/ww
jms/hh
jms/www/tttt/uu
I want to a subtring of the last word after the "/" e.g the first line I would like the substring "ht"
Your assistance will be appreciated.
regards
Paul
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thank you Oheil, What I would like to do is display both the names in the file as it is, and the subtring. Why I am doing this is because I want to use one file. My application takes both full name in the file and the substring. The substring command you gave me works very well, its only that I would want to achieve the above. My apologies for not being clear enough.
regards
Business Accounts
Answer for Membership
by: oklitPosted on 2009-10-16 at 02:55:50ID: 25588045
Select allOpen in new window