Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!zaphod.mps.ohio-state.edu!know!pluto.hemel.bull.co.uk!ewoods From: ewoods@hemel.bull.co.uk (Eoin Woods) Newsgroups: comp.unix.questions Subject: Re: reading in ascii files on a tape using tar? Message-ID: <1991Jan25.082233.19495@hemel.bull.co.uk> Date: 25 Jan 91 08:22:33 GMT References: <25690@adm.brl.mil> Sender: @hemel.bull.co.uk Organization: Bull HN UK Lines: 17 Nntp-Posting-Host: brno lgdelta!email!tachost!BRL.MIL!Info-Unix-Request@tachost.af.mil (The Moderator) writes: >I will be getting several dozen labelled and unlabelled ascii >tapes (some created on vaxen, others on big blue). What command >whould I use to copy these files from tape to disk. Take a look at the dd(1) command, a command like : $dd if=/dev/tape of=/users/fred/ibmfile conv=ibm would read an IBM tape, converting the IBM EBCDIC to ASCII. To swap byte ordering use the conv=swab option. (The list of perms and combs for this command is huge!) Eoin. --