Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Install CSVKit

Posted on May 14, 2015October 26, 2015 By David Kittell

I personally use Ubuntu, if you don’t the commands may be slightly different.

To install:

apt-get --assume-yes update && apt-get --assume-yes upgrade && apt-get --assume-yes autoremove
apt-get --assume-yes install python-dev python-pip python-setuptools build-essential
pip install --upgrade setuptools
pip install --upgrade csvkit
Originally Posted on May 14, 2015
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code CSVKit UNIX Shell Scripts

Post navigation

Previous post
Next post

Related Posts

MySQL – WordPress Multisite Settings

Posted on December 30, 2015December 30, 2015

Currently this is not an ideal process but will provide needed information. First get a list of all of the site’s option tables. Typically the main/root site will be wp_options and sub-sequential sites will be wp_2_options, wp_3_options, etc. # Show all options tables in database show tables like ‘%options%’; The…

Read More

LDAP Dates Converted

Posted on July 25, 2013October 26, 2015

Dates that look like 127524839567199000 (pwdLastSet, accountExpires, lastLogonTimestamp, etc.) IF( B16>0 ,B16/864000000000 – 109205 ,"" ) Example: 130186556607343750 converts to 40921.80861 40921.80861 in Excel with cell formatting of Date/Time will show as January 13th, 2012 7:24 PM Dates that look like 20050210223453.0Z (whenChanged) DATEVALUE( CONCATENATE( (LEFT(TRIM(B9),4)) ,"-" ,(RIGHT(LEFT(TRIM(B9),6),2)) ,"-" ,RIGHT(LEFT(TRIM(B9),8),2)…

Read More

CopyText Via ID

Posted on June 12, 2013October 26, 2015

This function is to copy text or other HTML elements from one ID to another ID function copytext(source_id, dest_id) { var s = document.getElementById(source_id); var d = document.getElementById(dest_id); d.value = s.innerHTML; } Originally Posted on June 12, 2013Last Updated on October 26, 2015 All information on this site is shared…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes