{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Exercise 1: Viewing file content with tables\n", "\n", "Using `qsv table` and its options, complete the following tasks on the `fruits.csv` file." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "qsv table --help" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1. Print `fruits.csv` as a table with right-aligned column entries." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "2. Print `fruits_extended.csv` as a table." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "3. Print `fruits_extended.csv` as a table with each column having a minimum width of `20`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4. Print `fruits_extended.csv` as a table with the minimum number of spaces between each column being `20`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "5. Print `fruits_extended.csv` as a table with each column having a limited length of `5`." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "vscode": { "languageId": "plaintext" } }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Bash", "language": "bash", "name": "bash" }, "language_info": { "name": "bash" } }, "nbformat": 4, "nbformat_minor": 2 }