I'm looking for a shell script idea to work on for practice with shell scripting. Can you please suggest intermediate ideas to work on? I'm a developer and I prefer working on an idea that deals with files.
feedback
|
|
Here are two scripts from my personal library. They are simple enough not to require a full blown programming language, but aren't trivial, particularly if you aim to get all the details right (support all flags, return same exit code, etc.). cvsaddWrite a script to perform a recursive For bonus points: Allow the user to optionally specify a list of directories or files to restrict the search to. Handle file names with spaces correctly. If you can't figure out if a file is text or binary, ask the user.
svnfindWrite a wrapper around For bonus points: Allow other actions besides the default
| ||||
|
feedback
|
|
For shell scripting, think of a task that you do frequently - and think how you would automate that task. You can start off with a basic script that just about does what you need. Then you realize that there are small variations on the task, and you start to allow the script to handle those. And it gently becomes more complex. Almost all of the scripts I have (some hundreds of them) started off as "I've done that before; how can I avoid having to do it again?".
One task that I'm working on - still a work in progress - is: Identify duplicate files
This much is fairly easy - it requires some medium-grade shell scripting and you might have to find a command to generate the checksum (but you might be OK with The hard part - where I've not yet gotten a good solution - is then dealing with the duplicates. I have some 8,500 duplicated hashes, with about 27,000 file names in total. Some of the duplicates are images like smileys used in chat transcripts - there are a lot of that particular image. Others are duplicate PDF files collected from various machines at various times; I need to organize them so I have one copy of the file on disk, with perhaps links in the other locations. But some of the other locations should go - they were convenient ways to get the material from retired machines onto my current machine. I have not yet got a good solution to the second part. | |||||
|
feedback
|
|
You could try some simple CGI scripting. It can be done in shell and involves a lot of here documents, parsing and extracting of form values, a bit of escaping and whatever you want to do as payload. (I do not recommend exposing such a script to the hostile internet, though.) | |||
|
feedback
|