- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: file conversion
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 08:02 PM
01-04-2004 08:02 PM
file conversion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 08:31 PM
01-04-2004 08:31 PM
Re: file conversion
NO, i think there is no such utility, since a csv is a Comma Separated Value text file, whereas a .doc is a microsoft proprietary format for storing the documents.
If you tell us the purpose, maybe we can suggest other ideas, like generating html files or pdf files.
html could be an option ?
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 08:35 PM
01-04-2004 08:35 PM
Re: file conversion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 09:02 PM
01-04-2004 09:02 PM
Re: file conversion
thanks for giving the reply.actually my need is to send the .csv file using mailx command as an attahment.for this i am using
uuencode.
is there any command to foramt the .csv like adjust -m1,which removes all spaces and treat all as words.
Once again thanks for giving the reply.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 10:02 PM
01-04-2004 10:02 PM
Re: file conversion
remove formatting:
cat yourfile | col -b | uuencode .....
remove/collapse spaces:
cat yourfile | tr -d " " | uuencode ....
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 10:47 PM
01-04-2004 10:47 PM
Re: file conversion
I WANT TO DO FTP TO ANTOTHER SYSTEM HOW CAN I PASS USER NAME AND PASSWORD TO THAT IN A SHELL SCRIPT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2004 11:11 PM
01-04-2004 11:11 PM
Re: file conversion
ftp -in HOSTNAME << EOF
user USERNAME PASSWORD
...
by
EOF
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 12:13 AM
01-05-2004 12:13 AM
Re: file conversion
see manpage of .netrc
Then you are able to use ftp "hostname" in your script and the .netrc will do the login and file transfer.
Regards,
Peter Geluk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2004 12:43 AM
01-05-2004 12:43 AM