Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
05-24-2004, 04:34 AM
|
#1
|
Member
Registered: Jun 2003
Location: Topeka, KS
Distribution: Slackware
Posts: 193
Rep:
|
script for a command that won't accept wildcard value
I would like to make a script for a command that won't take wild card values. The command I want to automate is 'shorten -k *.shn' which will append seek tables to .shn files. When I invoke this command now in a directory full of .shn files I get this error: 'shorten: too many filenames' so I have to do it manually for each file. I don't know why it won't accept the wild card value like most commands do, if it did I would just do 'shorten -k *.shn' which is easy enough. Can anyone give me advice on making a script to do this?
Thanks for your time.
|
|
|
05-24-2004, 04:37 AM
|
#2
|
Senior Member
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,306
Rep:
|
find . -name "*.shn" -exec shorten -k {} \;
watch the spaces
|
|
1 members found this post helpful.
|
05-24-2004, 04:44 AM
|
#3
|
Member
Registered: Jun 2003
Location: Topeka, KS
Distribution: Slackware
Posts: 193
Original Poster
Rep:
|
Thanks a lot.
|
|
|
05-24-2004, 05:07 AM
|
#4
|
Senior Member
Registered: Dec 2002
Location: Mosquitoville
Distribution: RH 6.2, Gen2, Knoppix,arch, bodhi, studio, suse, mint
Posts: 3,306
Rep:
|
this is the script way to do it.
for a in *.shn ; do
shorten -k "$a"
done
|
|
1 members found this post helpful.
|
05-24-2004, 05:30 AM
|
#5
|
Member
Registered: Jun 2003
Location: Topeka, KS
Distribution: Slackware
Posts: 193
Original Poster
Rep:
|
I had been fighting with this for awhile and was very close to having what you wrote there but had a few things wrong, thanks again.
|
|
|
All times are GMT -5. The time now is 04:41 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|