Sponsored Content
Top Forums UNIX for Advanced & Expert Users Help me While zipping the file Post 302116880 by Jolly on Wednesday 9th of May 2007 06:53:53 AM
Old 05-09-2007
Question Help me While zipping the file

Hi ,

I have written code which will ask the subject,body of the mail, attachment and mail id of the receipient.
Code will pick up 4 files zip it. It will zip all the files and then post the mail to the receipient. While zipping the file i am getting error. Can anyone help me with this.

#!/bin/Sh

##Parameters to be passed
echo 'What subject do you want to put for mail'
read subject

echo 'Pass the path of the text file containing the body of the mail'
read body

echo 'Pass the path of the files need to be attached'
read attachment_path

echo 'Pass the mail id'
read mail_receiver


##Start of Program
cd $attachment_path
echo 'current path is' `pwd`


## Count and initialize parameters
count=`ls|wc -l`
echo 'count is '$count
a=0


##introduced while loop to pick up the first 4 files and zip. Delete the files that are already zipped and pick the other file
## to be zipped

while [ $count -gt 0 ]
do
ls|head -4 > zipfiles
cat zipfiles
sed - e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/AbcdeFghIjklmnopqRstuvwxyz/' -e "s/^/\'/" -e "s/$/\'/" <zipfiles> zfile

list_of_file=`cat zfile`
echo $list_of_file

a=`expr $a + 1`
zip Snaps[$a] $list_of_file
rm $list_of_file
count=0
echo 'Files zipped'
rm zfile
done

## This block send the mail to the receiver.
file=`ls`
echo 'count of zip file -' $file
for i in $file
do
echo $i
var=$i
( cat $body
uuencode $var $var
) | mailx -s "$subject" ${mail_receiver}

done
***************************------**********************

While Executing this I am getting error :

current path is /export/home/jmirani/MAILExample/attach
count is 120
First month of RIA 001.jpg
First month of RIA 002.jpg
First month of RIA 003.jpg
First month of RIA 004.jpg
'First month of RIA 001.jpg' 'First month of RIA 002.jpg' 'First month of RIA 003.jpg' 'First month of RIA 004.jpg'
mail.sh[57]: 'First: not found

zip error: Nothing to do! (Snaps[1].zip)
'First: No such file or directory
month: No such file or directory
of: No such file or directory
RIA: No such file or directory
001.jpg': No such file or directory
'First: No such file or directory
month: No such file or directory
of: No such file or directory
RIA: No such file or directory
002.jpg': No such file or directory
'First: No such file or directory
month: No such file or directory
of: No such file or directory
RIA: No such file or directory
003.jpg': No such file or directory
'First: No such file or directory
month: No such file or directory
of: No such file or directory
RIA: No such file or directory
004.jpg': No such file or directory
Files zipped


All though files have been put into string still zip takes the wrong file name. Any help with this is much appreciated.

I tried zip trial 'First month of RIA 001.jpg' 'First month of RIA 002.jpg' 'First month of RIA 003.jpg' 'First month of RIA 004.jpg'
and this works properly.But code doesn't work?
 

10 More Discussions You Might Find Interesting

1. AIX

Limitations of a file size for zipping

what is the maximum file size that i can zip in aix. (1 Reply)
Discussion started by: ramky79
1 Replies

2. Shell Programming and Scripting

Script for zipping a file

HI, I want a script which creat a zip file folder of files older than 15 days....... please help me on this........... (4 Replies)
Discussion started by: jayaramanit
4 Replies

3. UNIX for Dummies Questions & Answers

zipping all the tar files to singlr file in directory

Hi, i have more than 300 tar files in directory and i want to zip all tar files to single file. could anybody tell me the command since i know how to do zip for single tar file: bash-3.00$gzip 2008_11_10.tar bash-3.00$ pwd /oracle1/archivebackup in this directory i have lot files... (2 Replies)
Discussion started by: prakash.gr
2 Replies

4. Shell Programming and Scripting

zipping a directory when the file count is over $X

Hiya, I've been plugging away at this script and I cant get it to behave as I need. first off it fails to adhere to the conditions of the file limit, and zips the directory regardless of the file count and secondly, but less important it zips up the entire path not just the directory I'm... (2 Replies)
Discussion started by: orionrush
2 Replies

5. Shell Programming and Scripting

Zipping of file in a different directory

Hi, I am having some problem with a shell script which zip some files. For zipping I have used the following command: find . -name "Test_*" -mtime 0 | zip Test_$(date +"%Y%m%d") -@ I have kept the script in /home/abc directory. It is creating the zip file within the same directory where i... (2 Replies)
Discussion started by: abhishek_510
2 Replies

6. Shell Programming and Scripting

grep a file and zipping it

Hi, In my process iam creating a temporary filelist with filename and date(yyyy-mm-dd format).I need to search file for a date and zip. Below command is giving the filename ,can someone helpme how to add the zip or gzip command to this statement. grep 2010-11-11 filelist.log | awk... (1 Reply)
Discussion started by: swathich
1 Replies

7. UNIX for Dummies Questions & Answers

Zipping the file when moving

Hi, I have a file a.txt, I am moving the file from my source location (/root/onw/src) to target folder(root/byl/src). My target folder has already a file by name a.txt..,while moving can I see if this file a.txt is existing then move it to archive folder(/root/byl/arc) zip and add time stamp to... (2 Replies)
Discussion started by: shruthidwh
2 Replies

8. UNIX for Dummies Questions & Answers

Help With zipping a file

Hi I need to zip a file and move it into another folder along with the timestamp. The orginal file must be removed from the source directory Source : folder1/source12.txt folder2 After zipping Folder1/Folder2/source12.zip Any help will be greatly appreciarted ... (5 Replies)
Discussion started by: akshay01987
5 Replies

9. Shell Programming and Scripting

Error in Zipping a file

Hi I am trying to create a zip file of a csv by running below script. zip -r Daily_DB_`date '+:%d/%m/%y'` DBA_checks.csv But I am getting below error zip I/O error: No such file or directory zip error: Could not create output file (Daily_DB_:02/11/12.zip) However when I run below... (1 Reply)
Discussion started by: sv0081493
1 Replies

10. Shell Programming and Scripting

Zipping file issues

Hi All, I am trying to zip a file but facing the issue. I have three zip files. a_1.zip a_2.zip c.zip I want to add a_1.zip and a_2.zip to c.zip Code: ############### for i in a*.zip; do printf "%s\n" "$i" done | zip -@ c.zip (2 Replies)
Discussion started by: weknowd
2 Replies
JPEGICC(1)						      General Commands Manual							JPEGICC(1)

NAME
jpegicc - little cms ICC profile applier for JPEG. SYNOPSIS
jpegicc [options] input.jpg output.jpg DESCRIPTION
lcms is a standalone CMM engine, which deals with the color management. It implements a fast transformation between ICC profiles. jpegicc is little cms ICC profile applier for JPEG. OPTIONS
-b Black point compensation. -c <0,1,2,3> Precalculates transform. (0=Off, 1=Normal, 2=Hi-res, 3=LoRes) [defaults to 1] -g Marks out-of-gamut colors on softproof. -h <0,1,2> Show summary of options and examples. -i profile Input profile (defaults to sRGB). -m <0,1,2,3> SoftProof intent. -n Ignore embedded profile. -p profile Soft proof profile -o profile Output profile (defaults to sRGB). -q <0..100> Output JPEG quality. -t <0,1,2,3> Intent (0=Perceptual, 1=Colorimetric, 2=Saturation, 3=Absolute). -v Verbose. EXAMPLES
To color correct from scanner to sRGB: jpegicc -iscanner.icm in.jpg out.jpg To convert from monitor1 to monitor2: jpegicc -imon1.icm -omon2.icm in.jpg out.jpg To make a CMYK separation: jpegicc -oprinter.icm inrgb.jpg outcmyk.jpg To recover sRGB from a CMYK separation: jpegicc -iprinter.icm incmyk.jpg outrgb.jpg To convert from CIELab ITU/Fax JPEG to sRGB jpegicc -iitufax.icm in.jpg out.jpg NOTES
For suggestions, comments, bug reports etc. send mail to info@littlecms.com. SEE ALSO
tifficc(1), icc2ps(1), icclink(1), icctrans(1), wtpt(1) AUTHOR
This manual page was written by Shiju p. Nair <shiju.p@gmail.com>, for the Debian project. September 30, 2004 JPEGICC(1)
All times are GMT -4. The time now is 09:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy