Hi,
i want to zip the files that generates automatically
every few minutes (files generated are in .arc
extension)....any body write a script for this...
thanks in advance
Answer Posted / sandeep
Mr srinivas , i want last 2 files not to be zipped, rest
files should be zipped...
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is wc in shell script?
What is path variable bash?
Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.
How are shells born?
What is shell company all about?
What are the types of script?
How do I read a .sh file?
Explain about non-login shell files?
wats the deinitions for shell utility and filter?
How to find duplicate record in file using shell script?
What is the difference between scripting and coding?
What is a program shell?
How to get the 3rd element/column from each line from a file?
Write down the syntax for all the loops in shell scripting.
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }