Skip to content

Instantly share code, notes, and snippets.

View LadyAleena's full-sized avatar
🙂
Still getting the hang of using git and GitHub together

Lady Aleena LadyAleena

🙂
Still getting the hang of using git and GitHub together
View GitHub Profile
=head1 SPECIFICATION
While no formal specification for CSV exists, L<RFC 4180|http://tools.ietf.org/html/rfc4180>
(I<1>) describes the common format and establishes C<text/csv> as the MIME
type registered with the IANA. L<RFC 7111|http://tools.ietf.org/html/rfc7111>
(I<2>) adds fragments to CSV.
Many informal documents exist that describe the C<CSV> format. L<"How To:
The Comma Separated Value (CSV) File Format"|http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm>
(I<3>) provides an overview of the C<CSV> format in the most widely used
#!/bin/bash
sdir=$HOME/Documents/"$1"
tdir=$HOME/tmp/transcoded-"$1"
if [[ -d "$tdir" ]]; then
mkdir -p "$tdir"
fi
shopt -s globstar