UNIX Shell Scripts Help?
-
I am stuck on this assignment I have. Was wondering how I am to get started... "... In this assignment you will be working towards a script that can be used to fix this and similar problems by giving a desired extension and then a group of files that we wish renamed to use that extension instead of whatever final extension they have at the moement, e.g. chExt.sh cpp *.CPP *.Cpp chExt.sh h *.H You'll be working on this assignment in 3 stages. 1. Create a directory ~/UnixCourse/scriptAsst. Within that directory, create a shell script, chExt1.sh taking two parameters: 1. the desired file extension 2. the name of a single file to be renamed with that extension For example, (assuming you have cd'd into your scriptAsst directory, echo ants > aardvark.CPP ./chExt1.sh cpp aardvark.CPP should rename the file "aardvark.CPP" to "aardvark.cpp". date > bongo.dat ./chExt1.sh backup bongo.dat should rename the file "bongo.dat" to "bongo.backup". Hint: Try to get the current name of the file into a shell variable (e.g., $oldName). Then use a sed command to rewrite that value so that it has the desired extension and store the result in a second shell variable (e.g., $newName). Finally, issue the actual command to rename the file. There are probably other ways to achieve this effect as well, but all of the info you need for the approach suggested here has been covered in the Lecture Notes. 2. To make the script a bit more robust, it would be good if it checked to see if the file that we want to rename actually exists. Within the same directory, create a shell script, chExt2.sh taking the same two parameters, that behaves the same as the first script for files that exists, but for files that do not exist, prints a message fileName: No such file where fileName is the name of the file given in the second parameter. No other messages should be issued, including error messages from commands invoked by your script. 3. Finally, within the same directory, create a shell script, chExt.sh that takes one or more parameters, where the first is a desired extension and the remainder are names of files to be renamed. For each file in the command line, this script should rename the file, as above, if the file exists or print the error message described in the previous step if the file does not exist. For example, ls > crocodile.foo echo bark > dingo.bar ./chExt.sh dat crocodile.foo bogusName.foo dingo.bar should result in crocodile.foo being renamed crocodile.dat, an error message "bogusName.foo: No such file", and dingo.bar being renamed dingo.dat. ..." I have created the directory and so far I have created the file chExt1.sh and it contains the following script: #!/bin/sh set oldName=aardvark.CPP sed s/$oldName/$newName/g | set newName=aardvark.cpp ..but I know this is not right.
-
Answer:
I think unless you specify what you want in clear manner I can not be of any use to you
Diego at Yahoo! Answers Visit the source
Related Q & A:
- How come CD doesn't work in my shell script?Best solution by Super User
- Unix tools: what if a file is named minus something?Best solution by Super User
- How to call shell script into perl?Best solution by Stack Overflow
- How to execute Unix shell script from Windows?Best solution by Stack Overflow
- What does a Unix System Administrator do?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.