From a709c709ce168c6feda6abee35c570a0852a6312 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sat, 28 Feb 2015 12:30:36 -0500 Subject: [PATCH] Added linux commands IPython Notebook, initially contains command disk usage commands. --- README.md | 1 + commands/linux.ipynb | 97 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 commands/linux.ipynb diff --git a/README.md b/README.md index 642eb36..495420d 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ IPython Notebooks demonstrating pandas functionality. IPython Notebooks demonstrating various command lines for AWS, Unix, etc. * [aws commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/aws.ipynb) +* [linux commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/linux.ipynb) * [jekyll commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/jekyll.ipynb) ## References diff --git a/commands/linux.ipynb b/commands/linux.ipynb new file mode 100644 index 0000000..f1fa12b --- /dev/null +++ b/commands/linux.ipynb @@ -0,0 +1,97 @@ +{ + "metadata": { + "name": "", + "signature": "sha256:e595a63f61ca91bdd492a8932695aa68c3ef680260edee4cfe01574de3e4a431" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Linux Commands" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Disk Usage" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Display human-readable (-h) free disk space:" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "df -h" + ], + "language": "python", + "metadata": {}, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Display human-readable (-h) disk usage statistics:" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "du -h ./" + ], + "language": "python", + "metadata": {}, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Display human-readable (-h) disk usage statistics, showing only the total usage (-s):" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "du -sh ../" + ], + "language": "python", + "metadata": {}, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Display the human-readable (-h) disk usage statistics, showing also the grand total for all file types (-c):" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "du -csh ./" + ], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file