![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| uuencode for attachment giving problem | manojram | UNIX Desktop for Dummies Questions & Answers | 3 | 11-19-2008 08:20 PM |
| question on uuencode | vangalli | Shell Programming and Scripting | 5 | 07-26-2006 11:03 AM |
| Problem with uuencode | markms | Shell Programming and Scripting | 0 | 04-07-2006 12:13 PM |
| Uuencode problem in mail attachment | mvalonso | UNIX for Dummies Questions & Answers | 8 | 03-16-2006 01:38 PM |
| uuencode | tejasingaraju17 | Shell Programming and Scripting | 2 | 11-20-2005 02:01 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
problem with uuencode
Hi everyone,
I'm emailing a spool file to a person using mailx. I'm using uuencode to attach the file to the email. but am getting this error uuencode: ISO8859-15 to 646 conversion: Invalid argument Any ideas as to why. The code is below sqlplus -s user/password@database <<EOF set verify off set feedback off set pagesize 0 set linesize 60 set echo off set wrap off set term off set heading off set auto off spool /tmp/genevabase.txt select account_num||' '||error_message from geneva_processing_errors; spool off; EOF uuencode /tmp/genevabase.txt /tmp/genevabase.txt | mailx -s 'BASE Checks '$SYSDATE' for ICO '$1 xxxxxx@xxxx am I missing something glaring ??? Last edited by rjsha1; 08-23-2007 at 10:42 AM.. Reason: wrong code |
|
||||
|
Quote:
|
|
||||
|
A very late response, but here goes. There's a known bug in Solaris's implementation of uuencode; try typing this
unset LC_CTYPE immediately before the uuencode command line and your error message should disappear. |
|
||||
|
Quote:
Code:
echo $password | sqlplus -s user@database <<EOF Last edited by John Mac; 08-18-2008 at 11:45 AM.. Reason: Missed the here doc code |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|