# pattern

**URL:** https://community.unix.com/t/pattern/266573
**Category:** UNIX for Dummies Questions & Answers
**Created:** [May 27, 2010, 11:25am UTC](https://community.unix.com/t/pattern/266573 "2010-05-27T11:25:54Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Naveen\_5960](https://community.unix.com/letter_avatar/naveen_5960/32/5_5575768a8748004e209b776fc1b2916d.png) [@Naveen\_5960](https://community.unix.com/u/Naveen_5960)
#### Post date: [May 27, 2010, 11:25am UTC](https://community.unix.com/t/pattern/266573/1 "2010-05-27T11:25:54Z")

</div>

Hi ,

One of the files one.txt has this information  
one.txt

```nohighlight
/pkgs/ABC/XYZ/filename.excl.xml.zip
/pkgs/ABC/XYZ/123/filename.txt.zip
/pkgs/ABC/filan2.abc.zip
/pkgs/pqr/filename5.xml.zip

```

i just need the zip files

```nohighlight
filename.excl.xml.zip
filename.txt.zip
filan2.abc.zip
filename5.xml.zip

```

---

<div class="post-metadata">

### Author: ![vbe](https://community.unix.com/user_avatar/community.unix.com/vbe/32/266_2.png) [@vbe](https://community.unix.com/u/vbe)
#### Post date: [May 27, 2010, 11:51am UTC](https://community.unix.com/t/pattern/266573/2 "2010-05-27T11:51:18Z")

</div>

```nohighlight
ant:/home/vbe $ cat one.txt|while read line ;do echo $line| awk -F/ '{print $NF}';done  
filename.excl.xml.zip
filename.txt.zip
filan2.abc.zip
filename5.xml.zip

```

---

<div class="post-metadata">

### Author: ![anbu23](https://community.unix.com/user_avatar/community.unix.com/anbu23/32/351_2.png) [@anbu23](https://community.unix.com/u/anbu23)
#### Post date: [May 27, 2010, 12:09pm UTC](https://community.unix.com/t/pattern/266573/3 "2010-05-27T12:09:53Z")

</div>

```nohighlight
sed "s;.*/;;" file

```

---

<div class="post-metadata">

### Author: ![pseudocoder](https://community.unix.com/user_avatar/community.unix.com/pseudocoder/32/666_2.png) [@pseudocoder](https://community.unix.com/u/pseudocoder)
#### Post date: [May 27, 2010, 1:17pm UTC](https://community.unix.com/t/pattern/266573/4 "2010-05-27T13:17:05Z")

</div>

```nohighlight
basename `cat one.txt`

```
