Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<script src="http://www.skulpt.org/static/skulpt.min.js" type="text/javascript"></script>
<script src="http://www.skulpt.org/static/skulpt-stdlib.js" type="text/javascript"></script>
</head>
<body>

Keybase proof

I hereby claim:

  • I am akaak on github.
  • I am akaak (https://keybase.io/akaak) on keybase.
  • I have a public key whose fingerprint is 97E3 CE88 164F CECD 20A1 819E 8F62 05B3 66B6 B265

To claim this, I am signing this object:

@akaak
akaak / strip-columns
Created February 21, 2014 14:33
Strip or cut columns from a data file
# remove columns from a file
#http://stackoverflow.com/questions/13446255/how-to-remove-the-first-two-columns-in-a-file-using-shell-awk-sed-whatever
cut -d " " -f 3- input_filename > output_filename