Newbie.. Find if a file exists and open, if not create the desired file..


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Newbie.. Find if a file exists and open, if not create the desired file..
# 1  
Old 05-09-2011
Newbie.. Find if a file exists and open, if not create the desired file..

Hey all,
I'm brand new to script writing, I'm wanting to make a script that will ask for a file and then retrieve that file if it exists, and if it doesn't exist, create the file with the desired name, and I'm completely stuck.. so far..
Code:
#! bin/bash
echo "Enter desired file"
read "$file"
if [ -f $file ] ; then

...that's where i have no clue what to do, not even sure the first part is right..Smilie
any help would be awesome, reading man find, and man test right now to see if i can find something..

Last edited by pludi; 05-09-2011 at 04:42 AM..
# 2  
Old 05-09-2011
Use code tags

Try this

Code:
#! bin/bash
echo "Enter desired file"
read "$file"
if [ ! -f $file ] ; then
  touch $file #this will create the file
fi

And do you mean by retrieve the file?
regards,
Ahamed
This User Gave Thanks to ahamed101 For This Post:
# 3  
Old 05-09-2011
Thank you for the help, by retrieve, I mean it will look for the file, and if it exists already it will open it..
# 4  
Old 05-09-2011
Again "open it" is a bit vague, do you want to "open it " in a pager such as less on the screen or "open it" in open office or open it in an editor like vi?

In each case above you invoke the command on the filename, most programs will recognise that there is no such file, and if the permissions allow it will create the file, pure viewers like less are the obvious exception to this rule.
# 5  
Old 05-09-2011
Sorry for not being clear, it would have to be opened in vi ,
# 6  
Old 05-10-2011
Code:
#! bin/bash
echo "Enter desired file"
read "$file"
if [ ! -f $file ] ; then
  touch $file #this will create the file
fi
vi $file

Please use code tags
This User Gave Thanks to ananthap For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. OS X (Apple)

Newbie needs to find file

I need to find a file using Applescript. Applescript is so slow. Someone on the Apple forums gave me some unix code and it works for the most part. The ls command is really list and not find but when it works, it returns the path to the file instantly, NOT 45 seconds Applescript takes. here is... (11 Replies)
Discussion started by: sbrady
11 Replies

2. Shell Programming and Scripting

Find a file and if exists , execute a different file

Good Morning All, I'm a novice and please excuse me if i did miss some of the forum rules. What my intention is, i have a file (services) residing @ /u01/Oracle/services. I know i can use the find command to find the "service" file. I get this file from a windows box and there is no certain... (8 Replies)
Discussion started by: thinkingeye
8 Replies

3. Shell Programming and Scripting

See if file exists and if not create it

Hi, I am using an expect script to roll out an ssh key to multiple servers. I have a problem as on some of them the authorized_keys file exists and on some it doesn't. Where it exists I need to >> the key in and where it doesn't I need to create the file then sftp the file over. So I need some... (2 Replies)
Discussion started by: Grueben
2 Replies

4. Shell Programming and Scripting

How to find out whether a file exists with the help of regular expression?

Hi all I have a list of file names in array. But this file names are not exact. so i want to search whether a file exists or not using regular expression. code snippet: if ; then echo "File exists" else echo "File does not exits" fi over here "*EQST*" should be treated as a regular... (4 Replies)
Discussion started by: Ganesh_more
4 Replies

5. UNIX for Dummies Questions & Answers

Statement to find if an entry exists in a file

I need to check if an entry input by the user is in a file. If so, I need to run a command, and if it does not exist then it should output entry does not exist. So I have so far... echo "Enter record:" read record //command || //command Can I use an if statement to do this? (3 Replies)
Discussion started by: itech4814
3 Replies

6. Red Hat

unable to open / create any file in vi

Hi, I am unable to create/open any file in vi editor for normal user, though using root I am able to create/open any file, using redhat 5.5, example vi test it showing nothing after entering command (9 Replies)
Discussion started by: manoj.solaris
9 Replies

7. UNIX for Dummies Questions & Answers

Check if file exists, and create file

hi i have 2 questions: 1. how can i check if file exist in vi? i tryed to do: if ; then echo file exist but i get from the compiler if: Expression Syntax. 2. how can i create file in vi? when im using cat - so the script stop and wait for me to write somthing into the new file when im... (2 Replies)
Discussion started by: nirnir26
2 Replies

8. Shell Programming and Scripting

find, if exists then append for file with same name

I will have to process multiple files with same name everyday. My requirement is: If on a certain day I see that filename.txt exists then the contents of the filename.txt would be added/append to the former file contents.Each time it sees the file the content would be added.But the header ... (8 Replies)
Discussion started by: RubinPat
8 Replies

9. Shell Programming and Scripting

Check if file exists, create new file?

Hi everyone, I'm brand new to shell scripts (and UNIX in general) and I've been able to figure everything out except this... I want to write a script that will take a filename as an argument, append the date to it (IE Dec 24 2008) and make sure it doesn't already exist, if so, add an integer to... (4 Replies)
Discussion started by: solarnoise
4 Replies

10. Shell Programming and Scripting

Need to write a script in UNIX to find a file if another file exists

So I have a lot of Java applications on my servers all having their own folder from the applications subdirectory. Now, I need to do the following. Search all the applications subdirectories for message.jar. If the message.jar file exists, I need to search the application directory for... (1 Reply)
Discussion started by: mmdawg
1 Replies
Login or Register to Ask a Question