The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
Looping thru tab delimited data
.
User Name
Remember Me?
Password
google unix.com
Forums
Register
Forum Rules
Links
Albums
FAQ
Members List
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
Looping thru tab delimited data
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
7
(
permalink
)
10-17-2006
tmarikle
Registered User
Join Date: Jan 2005
Posts: 683
Or again, without using another process and using a KSH built in capability:
Code:
for file in $dir/* do echo ${file##*/} done
This will do the same as basename.
tmarikle
View Public Profile
Find all posts by tmarikle
Find tmarikle's past nominations received
Find tmarikle's present nominations given