Um arquivo gz.tar é um arquivo de fita cujos arquivos internos estão compactados individualmente.
Primeiro, os arquivos são compactados recursivamente dentro de um diretório. Depois disso, o arquivo de fita desse diretório é gerado.
| #!/bin/bash | |
| # | |
| # List all MOBI-ASIN codes extracted from OPF files. | |
| # | |
| # Usage | |
| # | |
| # calibre-list-mobi-asin.sh LIBRARY | |
| # |
| # Smartlink - GENAI MP3 Player - USB Mass Storage | |
| # /etc/udev/rules.d/80-smartlink-mp3-player.rules | |
| # https://github.com/ilyakurdyukov/smartlink_flash | |
| # lsusb: Bus 001 Device 020: ID 301a:2801 SmartlinkTechnology USB2.0 Device | |
| SUBSYSTEMS=="usb", ATTRS{idVendor}=="301a", ATTRS{idProduct}=="2800", MODE="0666", TAG+="uaccess" | |
| SUBSYSTEMS=="usb", ATTRS{idVendor}=="301a", ATTRS{idProduct}=="2801", MODE="0666", TAG+="uaccess" |
| #!/bin/bash | |
| # | |
| # Convert a ebook into an audiobook. | |
| # | |
| # Input format: TXT | |
| # Output format: MP3 | |
| # | |
| # USAGE | |
| # |
| #!/bin/bash | |
| # | |
| # Este script baixa o RSS do site G1 da Globo. | |
| # | |
| # Produz dois arquivos: | |
| # | |
| # 1. Um arquivo XML o conteúdo inalterado; | |
| # 2. Um arquivo Record-Jar gerado a partir do XML. | |
| # |
| /** | |
| * Will normalize quotes in a given string. There are many variations of quotes | |
| * in the unicode character set, this function attempts to convert any variation | |
| * of quote to the standard Quotation Mark - U+0022 Standard Universal: " | |
| * | |
| * @param {string} str The string to normalize | |
| * @return {string} Normalized string. | |
| * @see https://unicode-table.com/en/sets/quotation-marks/ | |
| */ | |
| helpers.stdQuote = (str) => { |
| #!/usr/bin/mawk -f | |
| # | |
| # description | |
| # | |
| BEGIN { | |
| } | |
| { |
| #!/usr/bin/awk -f | |
| # | |
| # Reads a CSV file and prints a TSV file to standard output. | |
| # | |
| # Usage: | |
| # ./csv-to-tsv.awk input.csv > output.tsv | |
| # ./csv-to-tsv.awk -v SEP=";" input.csv > output.tsv | |
| # ./csv-to-tsv.awk -v COLUMNS=10 input.csv > output.tsv | |
| # |
| #!/bin/sh | |
| zcat "$1" | less |