Script to change/find/delete/install a specific file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Script to change/find/delete/install a specific file
# 1  
Old 12-02-2008
Script to change/find/delete/install a specific file

Hi

Very much a newbie to UNIX & scripting, but have identified an area within work that would benefit from being automated, as its repeated manually very often, and it looks like the ideal first script!

What I need to do is change directory to a users home (cd ~), and then find and remove a specific file (in the format .abcd).

The final part of my script will then be to unpack a cpio package to the users home path.

Although I know the basic Unix commands to do this step by step, i'm unsure as to how this can be interpreted into a shell, to run it automatically.

Any advice would be hugely appreciated.
# 2  
Old 12-02-2008
Well,
There is only one way to find out:
Try...
Quote:
Although I know the basic Unix commands to do this step by step, i'm unsure as to how this can be interpreted into a shell, to run it automatically.
For a start, you could type echo "Im starting my test"
then using your knowledge, execute step by step what is to be done
echo "Ive finished".
If the lot was successfull, you have now in your .sh_history between the 2 markers (echo...) the code needed for your script, copy paste in a new file called test.sh (or whatever you like...) make that file executable: chmod 755 test.sh
use it!
./test.sh
# 3  
Old 12-12-2008
Thanks very much vbe.

This is what I have so far-

cd ~
~/.mozilla
ls -a
echo "Do you wish to remove and re-install the .mozilla profile? Y/N"
read answer
echo "The answer is $answer"
exit 1
rm -rf .mozilla
cpio -icvdum < /pcms/data/mozilla_install.cpio
echo "Mozilla has been re-installed "

What I need to do now is get it so that if the answer to the echo is "Y", then the script continues (to remove the .mozilla), if not, to exit the script?

Regards
Kip
# 4  
Old 12-12-2008
here is a sample

Code:
read a; if [ $a = "Y" ]
then
echo "continue"
else
echo "exit"
fi

# 5  
Old 12-17-2008
All the help so far has been cracking, cheers all!

One last thing i'm just wondering.....

Is there a command where I can check if a directory exists, before removing it? If it does, I want the script to remove it and the proceed to the reinstall. If not, I want it to create it and proceed to the install?

Regards
Kip
# 6  
Old 12-20-2008
Quote:
Originally Posted by Great Uncle Kip
All the help so far has been cracking, cheers all!

One last thing i'm just wondering.....

Is there a command where I can check if a directory exists, before removing it? If it does, I want the script to remove it and the proceed to the reinstall. If not, I want it to create it and proceed to the install?

Regards
Kip
Code:
if  [  -d $dir_name ]
then
  echo "dir $dir_name is available"
else
  echo "dir $dir_name is not available"
fi

# 7  
Old 01-07-2009
Thanks for all the help, got the script up and running, tested, and it works fantastic!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find specific pattern and change some of block values using awk

Hi, Could you please help me finding a way to replace a specific value in a text block when matching a key pattern ? I got the keys and the values from a command similar to: echo -e "key01 Nvalue01-1 Nvalue01-2 Nvalue01-3\nkey02 Nvalue02-1 Nvalue02-2 Nvalue02-3 \nkey03 Nvalue03-1... (2 Replies)
Discussion started by: alex2005
2 Replies

2. Shell Programming and Scripting

Count specific character of a file in each line and delete this character in a specific position

I will appreciate if you help me here in this script in Solaris Enviroment. Scenario: i have 2 files : 1) /tmp/TRANSACTIONS_DAILY_20180730.txt: 201807300000000004 201807300000000005 201807300000000006 201807300000000007 201807300000000008 2)... (10 Replies)
Discussion started by: teokon90
10 Replies

3. UNIX for Beginners Questions & Answers

Delete columns with a specific title XXX, where the position change in each file

Goodmorning, I know how to cut a string and a column, and how to find a word. I have a file with over 100 columns. All columns have a title in the first line. I have to delete all columns with the XXX title. I can't use cut -f because the position of XXX columns change in each file, and in... (14 Replies)
Discussion started by: echo manolis
14 Replies

4. Shell Programming and Scripting

How to find a file with a specific pattern for current sysdate & upon find email the details?

I need assistance with following requirement, I am new to Unix. I want to do the following task but stuck with file creation date(sysdate) Following is the requirement I need to create a script that will read the abc/xyz/klm folder and look for *.err files for that day’s date and then send an... (4 Replies)
Discussion started by: PreetArul
4 Replies

5. Shell Programming and Scripting

how to change specific value for a entry in the file

Hello All, can someone please suggest me a one line command to change a specific value that is associated to an entry in the file. for example #more schedulefile quartz.job.manual.bonus.schedule=0 0 9 ? * * # it should be changed to #more schedulefile... (5 Replies)
Discussion started by: bobby320
5 Replies

6. Shell Programming and Scripting

Shell script to find specific file name and load data

I need help as to how to write a script in Unix for the following: We have 3 servers; The mainframe will FTP them to a folder. In that folder we will need the script to look and see if the specific file name is there and load it to the correct table. Can anyone pls help me out with... (2 Replies)
Discussion started by: msrahman
2 Replies

7. Shell Programming and Scripting

Change specific ip address in a file

I need to change a line from a xen cfg file using sed if it's possible. The original line is: vif = I want to change ONLY the IP address of the second part ==> ip=10.1.10.4 to another IP --> ip=192.222.11.6 The first one ip=123.456.789.123 keeps untouchable. My new line shoud... (9 Replies)
Discussion started by: iga3725
9 Replies

8. UNIX for Dummies Questions & Answers

Change Specific Line of a File

Hi everyone, I am attempting to do something that should be very simple. How do I replace a specific line of a file with different text, and then save that file to its original name? I believe I want to use the sed command with the c option, but I after trying many times, I can't get the right... (10 Replies)
Discussion started by: msb65
10 Replies

9. Shell Programming and Scripting

How to change a specific character in a file

Hi, I have a data file with following structure: a|b|c|d|3|f1|f2|f3 a|b|c|d|5|f1|f2|f3|f4|f5 I want to change this data to: a|b|c|d|3|f1;f2;f3 a|b|c|d|5|f1;f2;f3;f4;f5 Data in column 5 tells the number of following fields. All fields delimiter after the 5th column needs to be... (6 Replies)
Discussion started by: sdubey
6 Replies
Login or Register to Ask a Question