Sponsored Content
Top Forums Shell Programming and Scripting Newbie.. Find if a file exists and open, if not create the desired file.. Post 302520667 by ahamed101 on Monday 9th of May 2011 01:14:21 AM
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:
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
ctags(1)							   User Commands							  ctags(1)

NAME
ctags - create a tags file for use with ex and vi SYNOPSIS
/usr/bin/ctags [-aBFtuvwx] [-f tagsfile] file... /usr/xpg4/bin/ctags [-aBFuvwx] [-f tagsfile] file... DESCRIPTION
The ctags utility makes a tags file for ex(1) from the specified C, C++, Pascal, FORTRAN, yacc(1), and lex(1) sources. A tags file gives the locations of specified objects (in this case functions and typedefs) in a group of files. Each line of the tags file contains the object name, the file in which it is defined, and an address specification for the object definition. Functions are searched with a pat- tern, typedefs with a line number. Specifiers are given in separate fields on the line, separated by SPACE or TAB characters. Using the tags file, ex can quickly find these objects' definitions. Normally, ctags places the tag descriptions in a file called tags; this may be overridden with the -f option. Files with names ending in .c or .h are assumed to be either C or C++ source files and are searched for C/C++ routine and macro defini- tions. Files with names ending in .cc, .C, or .cxx, are assumed to be C++ source files. Files with names ending in .y are assumed to be yacc source files. Files with names ending in .l are assumed to be lex files. Others are first examined to see if they contain any Pascal or FORTRAN routine definitions; if not, they are processed again looking for C definitions. The tag main is treated specially in C or C++ programs. The tag formed is created by prepending M to file, with a trailing .c , .cc .C, or .cxx removed, if any, and leading path name components also removed. This makes use of ctags practical in directories with more than one program. OPTIONS
The precedence of the options that pertain to printing is -x, -v, then the remaining options. The following options are supported: -a Appends output to an existing tags file. -B Uses backward searching patterns (?...?). -f tagsfile Places the tag descriptions in a file called tagsfile instead of tags. -F Uses forward searching patterns (/.../) (default). -t Creates tags for typedefs. /usr/xpg4/bin/ctags creates tags for typedefs by default. -u Updates the specified files in tags, that is, all references to them are deleted, and the new values are appended to the file. Beware: this option is implemented in a way that is rather slow; it is usually faster to simply rebuild the tags file. -v Produces on the standard output an index listing the function name, file name, and page number (assuming 64 line pages). Since the output will be sorted into lexicographic order, it may be desired to run the output through sort -f. -w Suppresses warning diagnostics. -x Produces a list of object names, the line number and file name on which each is defined, as well as the text of that line and prints this on the standard output. This is a simple index which can be printed out as an off-line readable function index. OPERANDS
The following file operands are supported: file.c Files with basenames ending with the .c suffix are treated as C-language source code. file.h Files with basenames ending with the .h suffix are treated as C-language source code. file.f Files with basenames ending with the .f suffix are treated as FORTRAN-language source code. USAGE
The -v option is mainly used with vgrind which will be part of the optional BSD Compatibility Package. EXAMPLES
Example 1 Producing entries in alphabetical order Using ctags with the -v option produces entries in an order which may not always be appropriate for vgrind. To produce results in alphabet- ical order, you may want to run the output through sort -f. example% ctags -v filename.c filename.h | sort -f > index example% vgrind -x index Example 2 Building a tags file To build a tags file for C sources in a directory hierarchy rooted at sourcedir, first create an empty tags file, and then run find(1) example% cd sourcedir ; rm -f tags ; touch tags example% find . ( -name SCCS -prune -name \ '*.c' -o -name '*.h' ) -exec ctags -u {} ; Notice that spaces must be entered exactly as shown. ENVIRONMENT VARIABLES
See environ(5) for descriptions of the following environment variables that affect the execution of ctags: LANG, LC_ALL, LC_COLLATE, LC_CTYPE, LC_MESSAGES, and NLSPATH. EXIT STATUS
The following exit values are returned: 0 Successful completion. >0 An error occurred. FILES
tags output tags file ATTRIBUTES
See attributes(5) for descriptions of the following attributes: /usr/bin/ctags +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWtoo | +-----------------------------+-----------------------------+ /usr/xpg4/bin/ctags +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWxcu4 | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ SEE ALSO
ex(1), lex(1), vgrind(1), vi(1), yacc(1), attributes(5), environ(5), standards(5) NOTES
Recognition of functions, subroutines, and procedures for FORTRAN and Pascal is done in a very simpleminded way. No attempt is made to deal with block structure; if you have two Pascal procedures in different blocks with the same name, you lose. The method of deciding whether to look for C or Pascal and FORTRAN functions is a hack. The ctags utility does not know about #ifdefs. The ctags utility should know about Pascal types. Relies on the input being well formed to detect typedefs. Use of -tx shows only the last line of typedefs. SunOS 5.11 18 Mar 1997 ctags(1)
All times are GMT -4. The time now is 04:21 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy