|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <title>Caltech Library's Digital Library Development Sandbox</title> |
| 5 | + <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> |
| 6 | + <link rel="stylesheet" href="/css/site.css"> |
| 7 | +</head> |
| 8 | +<body> |
| 9 | +<header> |
| 10 | +<a href="http://library.caltech.edu"><img src="/assets/liblogo.gif" alt="Caltech Library logo"></a> |
| 11 | +</header> |
| 12 | +<nav> |
| 13 | +<ul> |
| 14 | +<li> |
| 15 | +<a href="/">Home</a> |
| 16 | +</li> |
| 17 | +<li> |
| 18 | +<a href="../../index.html">README</a> |
| 19 | +</li> |
| 20 | +<li> |
| 21 | +<a href="../../license.html">LICENSE</a> |
| 22 | +</li> |
| 23 | +<li> |
| 24 | +<a href="../../install.html">INSTALL</a> |
| 25 | +</li> |
| 26 | +<li> |
| 27 | +<a href="../../docs/">Documentation</a> |
| 28 | +</li> |
| 29 | +<li> |
| 30 | +<a href="../../how-to/">How To</a> |
| 31 | +</li> |
| 32 | +<li> |
| 33 | +<a href="../../about.html">About</a> |
| 34 | +</li> |
| 35 | +<li> |
| 36 | +<a |
| 37 | +href="https://github.com/caltechlibrary/datatools">Github</a> |
| 38 | +</li> |
| 39 | +</ul> |
| 40 | +</nav> |
| 41 | + |
| 42 | +<section> |
| 43 | +<p> |
| 44 | +USAGE |
| 45 | +</p> |
| 46 | +<p> |
| 47 | +csv2tab is a simple conversion utility to convert from CSV to tab |
| 48 | +separated values. csv2tab reads from standard input and writes to |
| 49 | +standard out. |
| 50 | +</p> |
| 51 | +<p> |
| 52 | +If my.tab contained |
| 53 | +</p> |
| 54 | +<pre><code>"name","email","age" |
| 55 | +"Doe, Jane"," [email protected]",42 </code></pre> |
| 56 | +<p> |
| 57 | +Concert this to a tab separated values |
| 58 | +</p> |
| 59 | +<pre><code>csv2tab < my.csv </code></pre> |
| 60 | +<p> |
| 61 | +This would yield |
| 62 | +</p> |
| 63 | +<pre><code>name email age |
| 64 | +Doe, Jane [email protected] 42 </code></pre> |
| 65 | +</section> |
| 66 | + |
| 67 | +<footer> |
| 68 | +<span><h1><A href="http://caltech.edu">Caltech</a></h1></span> |
| 69 | +<span>© 2021 <a href="https://www.library.caltech.edu/copyright">Caltech library</a></span> |
| 70 | +<address>1200 E California Blvd, Mail Code 1-32, Pasadena, CA 91125-3200</address> |
| 71 | +<span>Phone: <a href="tel:+1-626-395-3405">(626)395-3405</a></span> |
| 72 | +<span><a href=" mailto:[email protected]" >Email Us </a></span> |
| 73 | +<a class="cl-hide" href="sitemap.xml">Site Map</a> |
| 74 | +</footer> |
| 75 | +</body> |
| 76 | +</html> |
0 commit comments