Renaming file and check for the renamed file existence


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Renaming file and check for the renamed file existence
# 8  
Old 03-01-2013
It worked.. Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File existence check

hi i wanted to check if the file exist or not(multiple files) DIRE=/home/V478 if ; then echo "file present" else echo "file not present" fi But i am getting the error as : [: unexpected operator/operand (3 Replies)
Discussion started by: ATWC
3 Replies

2. Shell Programming and Scripting

Script to check for the file existence, if file exists it should echo the no of modified days

Hi, I am looking for a shell script with the following. 1. It should check whether a particular file exists in a location #!/bin/sh if ; then echo "xxx.txt File Exists" else echo "File Not Found" fi 2. If file exists, it should check for the modified date and run a command... (2 Replies)
Discussion started by: karthikeyan_mac
2 Replies

3. UNIX for Dummies Questions & Answers

To check for existence of a file

I need to check for the existence of a file *.log in a specific directory using a perl script. Presently am not in that particular directory. So i am using chdir ("/path/to/my/file) And then i am using the -e in an if statement to check if it exists. if (-e $File) {......} $File contains the... (1 Reply)
Discussion started by: manutd
1 Replies

4. Shell Programming and Scripting

command to check existence of file name which has regex

Hi All. Pls help me with the command to check existence of files (I'll mention name of the file as regex) and proceed with my further processing if atleast one of them exists in detail, I've a dir /tmp/TURP, which may or may not have files named with "exter*.txt" I need to check and... (2 Replies)
Discussion started by: skpvalvekar
2 Replies

5. Shell Programming and Scripting

Check for file existence using wildcards

I am using the following command to check for files on a Unix (Solaris 9) and on Linux: if (-r *.) then echo " las file found" else echo " no las file found" endif If no las file is present, the "no las file found" message is displayed. If a las file is present, however, I get... (9 Replies)
Discussion started by: phudgens
9 Replies

6. Shell Programming and Scripting

How to check for file existence?

i want to check if the file is in the directory or not, and also it should be handle error conditions, like missing files and report the error and exit. i did something like this: file ="hello" if !test -e "${file}" then echo "No such files exist!" exit 1 else do something....... fi ... (1 Reply)
Discussion started by: mingming88
1 Replies

7. AIX

Check for File Existence

I have requirement where i need to search for files which start with SALESORDER and PURCHASEORDER. i need to process the files with SALESORDER first and then PURCHASEORDER. If SALESORDER files are not there i dont want to process PURCHASEORDER and i want to come out of script. I have written a code... (4 Replies)
Discussion started by: dsdev_123
4 Replies

8. AIX

check for file existence

Hello I am having a requirement like if there is no file in the directory then i need a message to pop on after the execution of the script. My script basically does for File in `ls -t $DIRECTORY | tail -1`; if there is no file the DIRECTORY then the script is simply exiting with out... (2 Replies)
Discussion started by: dsdev_123
2 Replies

9. AIX

how to check the existence of a file using korn shell?

we have tranferred an ear from local server to remote server using ftp.consider, we have an ear file named a.ear in remote server,again if we transfer the same file named a.ear from local server to remote server.we need the kshell to check the existence of the ear file in remote server,and if the... (3 Replies)
Discussion started by: karthikprasathk
3 Replies

10. Shell Programming and Scripting

Csh to check for existence of file

Hi, I would like to check the existence of files (doesn;t matter the number of files) in a directory. My file is named in the following manner (always ending with " myfile "). Can anybody give me some guidance? EG: abc1_myfile sdfr_myfile sffgd_myfile and so on ...... My... (9 Replies)
Discussion started by: Raynon
9 Replies
Login or Register to Ask a Question
dpkg-maintscript-helper(1)					    dpkg suite						dpkg-maintscript-helper(1)

NAME
       dpkg-maintscript-helper - works around known dpkg limitations in maintainer scripts

SYNOPSIS
       dpkg-maintscript-helper command [parameter...] -- maint-script-parameter...

COMMANDS AND PARAMETERS
       supports command

       rm_conffile conffile [prior-version [package]]

       mv_conffile old-conffile new-conffile [prior-version [package]]

       symlink_to_dir pathname old-target [prior-version [package]]

       dir_to_symlink pathname new-target [prior-version [package]]

DESCRIPTION
       This  program is designed to be run within maintainer scripts to achieve some tasks that dpkg can't (yet) handle natively either because of
       design decisions or due to current limitations.

       Many of those tasks require coordinated actions from several maintainer scripts (preinst, postinst, prerm, postrm). To avoid  mistakes  the
       same  call  simply  needs to be put in all scripts and the program will automatically adapt its behaviour based on the environment variable
       DPKG_MAINTSCRIPT_NAME and on the maintainer scripts arguments that you have to forward after a double hyphen.

COMMON PARAMETERS
       prior-version
	      Defines the latest version of the package whose upgrade should trigger the operation. It is  important  to  calculate  prior-version
	      correctly so that the operations are correctly performed even if the user rebuilt the package with a local version. If prior-version
	      is empty or omitted, then the operation is tried on every upgrade (note: it's safer to give the version and have the operation tried
	      only once).

	      If the conffile has not been shipped for several versions, and you are now modifying the maintainer scripts to clean up the obsolete
	      file, prior-version should be based on the version of the package that you are now preparing, not the first version of  the  package
	      that lacked the conffile. This applies to all other actions in the same way.

	      For  example,  for  a  conffile  removed	in  version 2.0-1 of a package, prior-version should be set to 2.0-1~. This will cause the
	      conffile to be removed even if the user rebuilt the previous version 1.0-1 as 1.0-1local1. Or a package  switching  a  path  from  a
	      symlink  (shipped  in  version  1.0-1)  to  a  directory	(shipped  in  version 2.0-1), but only performing the actual switch in the
	      maintainer scripts in version 3.0-1, should set prior-version to 3.0-1~.

       package
	      The package name owning the pathname(s).	When the package is "Multi-Arch:  same"  this  parameter  must	include  the  architecture
	      qualifier,  otherwise it should not usually include the architecture qualifier (as it would disallow cross-grades, or switching from
	      being architecture specific to architecture all or vice versa).  If the parameter is empty or omitted, the  DPKG_MAINTSCRIPT_PACKAGE
	      and  DPKG_MAINTSCRIPT_ARCH  environment  variables  (as set by dpkg when running the maintainer scripts) will be used to generate an
	      arch-qualified package name.

       --     All the parameters of the maintainer scripts have to be forwarded to the program after --.

CONFFILE RELATED TASKS
       When upgrading a package, dpkg will not automatically remove a conffile (a configuration file for which dpkg should preserve user  changes)
       if  it  is not present in the newer version. There are two principal reasons for this; the first is that the conffile could've been dropped
       by accident and the next version could restore it, users wouldn't want their changes thrown away.  The  second  is  to  allow  packages	to
       transition files from a dpkg-maintained conffile to a file maintained by the package's maintainer scripts, usually with a tool like debconf
       or ucf.

       This means that if a package is intended to rename or remove a conffile, it must explicitly do so and dpkg-maintscript-helper can  be  used
       to implement graceful deletion and moving of conffiles within maintainer scripts.

   Removing a conffile
       If  a  conffile	is  completely removed, it should be removed from disk, unless the user has modified it. If there are local modifications,
       they should be preserved. If the package upgrades aborts, the newly obsolete conffile should not disappear.

       All of this is implemented by putting the following shell snippet in the preinst, postinst and postrm maintainer scripts:

	   dpkg-maintscript-helper rm_conffile 
	       conffile prior-version package -- "$@"

       conffile is the filename of the conffile to remove.

       Current implementation: in the preinst, it checks if the conffile was modified and  renames  it	either	to  conffile.dpkg-remove  (if  not
       modified) or to conffile.dpkg-backup (if modified). In the postinst, the latter file is renamed to conffile.dpkg-bak and kept for reference
       as it contains user modifications but the former will be removed. If the  package  upgrade  aborts,  the  postrm  reinstalls  the  original
       conffile. During purge, the postrm will also delete the .dpkg-bak file kept up to now.

   Renaming a conffile
       If  a  conffile is moved from one location to another, you need to make sure you move across any changes the user has made. This may seem a
       simple change to the preinst script at first, however that will result in the user being prompted by dpkg to  approve  the  conffile  edits
       even though they are not responsible of them.

       Graceful renaming can be implemented by putting the following shell snippet in the preinst, postinst and postrm maintainer scripts:

	   dpkg-maintscript-helper mv_conffile 
	       old-conffile new-conffile prior-version package -- "$@"

       old-conffile and new-conffile are the old and new name of the conffile to rename.

       Current	implementation:  the  preinst  checks  if the conffile has been modified, if yes it's left on place otherwise it's renamed to old-
       conffile.dpkg-remove. On configuration, the postinst removes old-conffile.dpkg-remove and renames  old-conffile	to  new-conffile  if  old-
       conffile is still available. On abort-upgrade/abort-install, the postrm renames old-conffile.dpkg-remove back to old-conffile if required.

SYMLINK AND DIRECTORY SWITCHES
       When  upgrading	a package, dpkg will not automatically switch a symlink to a directory or vice-versa. Downgrades are not supported and the
       path will be left as is.

   Switching a symlink to directory
       If a symlink is switched to a real directory, you need to make sure before unpacking that the symlink is removed. This may  seem  a  simple
       change  to  the	preinst  script at first, however that will result in some problems in case of admin local customization of the symlink or
       when downgrading the package.

       Graceful renaming can be implemented by putting the following shell snippet in the preinst, postinst and postrm maintainer scripts:

	   dpkg-maintscript-helper symlink_to_dir 
	       pathname old-target prior-version package -- "$@"

       pathname is the absolute name of the old symlink (the path will be a directory at the end of the installation) and old-target is the target
       name of the former symlink at pathname. It can either be absolute or relative to the directory containing pathname.

       Current	implementation:  the preinst checks if the symlink exists and points to old-target, if not then it's left in place, otherwise it's
       renamed to pathname.dpkg-backup. On configuration, the postinst removes pathname.dpkg-backup if pathname.dpkg-backup is still a symlink. On
       abort-upgrade/abort-install, the postrm renames pathname.dpkg-backup back to pathname if required.

   Switching a directory to symlink
       If  a real directory is switched to a symlink, you need to make sure before unpacking that the directory is removed. This may seem a simple
       change to the preinst script at first, however that will result in some problems in case the directory contains conffiles, pathnames  owned
       by other packages, locally created pathnames, or when downgrading the package.

       Graceful switching can be implemented by putting the following shell snippet in the preinst, postinst and postrm maintainer scripts:

	   dpkg-maintscript-helper dir_to_symlink 
	       pathname new-target prior-version package -- "$@"

       pathname is the absolute name of the old directory (the path will be a symlink at the end of the installation) and new-target is the target
       of the new symlink at pathname. It can either be absolute or relative to the directory containing pathname.

       Current implementation: the preinst checks if the directory exists, does not contain conffiles,	pathnames  owned  by  other  packages,	or
       locally	created  pathnames, if not then it's left in place, otherwise it's renamed to pathname.dpkg-backup, and an empty staging directory
       named pathname is created, marked with a file so  that  dpkg  can  track  it.  On  configuration,  the  postinst  finishes  the	switch	if
       pathname.dpkg-backup  is  still	a  directory  and pathname is the staging directory; it removes the staging directory mark file, moves the
       newly created files inside the staging directory to the symlink target new-target/, replaces the now empty staging directory pathname  with
       a  symlink to new-target, and removes pathname.dpkg-backup. On abort-upgrade/abort-install, the postrm renames pathname.dpkg-backup back to
       pathname if required.

INTEGRATION IN PACKAGES
       When using a packaging helper, please check if it has native dpkg-maintscript-helper integration, which might make your	life  easier.  See
       for example dh_installdeb(1).

       Given  that  dpkg-maintscript-helper is used in the preinst, using it unconditionally requires a pre-dependency to ensure that the required
       version of dpkg has been unpacked before. The required version depends on the command used, for rm_conffile and mv_conffile it is 1.15.7.2,
       for symlink_to_dir and dir_to_symlink it is 1.17.14:

	   Pre-Depends: dpkg (>= 1.17.14)

       But  in many cases the operation done by the program is not critical for the package, and instead of using a pre-dependency we can call the
       program only if we know that the required command is supported by the currently installed dpkg:

	   if dpkg-maintscript-helper supports command; then
	       dpkg-maintscript-helper command ...
	   fi

       The command supports will return 0 on success, 1 otherwise. The supports command will check if the environment variables as set by dpkg and
       required by the script are present, and will consider it a failure in case the environment is not sufficient.

SEE ALSO
       dh_installdeb(1).

1.19.0.5							    2018-04-16						dpkg-maintscript-helper(1)