Rename a bunch of scripts

Reorganise and rename some files (add extensions, more relevant names,
etc.).
This commit is contained in:
Matteo Cypriani 2013-04-10 16:07:28 -04:00
vanhempi 199ebd9d68
commit d9da17a74c
9 muutettua tiedostoa jossa 19 lisäystä ja 17 poistoa

Näytä tiedosto

@ -1,9 +1,9 @@
# backup.sh #
# obstinate-rsync.sh #
backup.sh is a simple script that transfers a single directory (your
home directory, by default) to a remote host, using rsync. You can
specify exclude patterns in a file (~/.backup-excludes by default).
The transfer will be reattempted until it succeed.
obstinate-rsync.sh is a simple script that transfers a single directory
(your home directory, by default) to a remote host, using rsync. You can
specify exclude patterns in a file (~/.backup-excludes by default). The
transfer will be reattempted until it succeed.
Edit the script to configure the protocol, host, directories, etc.

Näytä tiedosto

@ -1,6 +1,7 @@
# lz and uz #
# lz.sh (lz and uz) #
The lz script emulates and extends commands lz and uz from the mtools.
The lz.sh script emulates and extends commands lz and uz from the
mtools.
It handles: tar, tar.gz, tar.bz2, tar.xz, tar.lzma and tar.Z (and
associated 3-characters extensions: tgz, tbz, tb2, tlz, txz, taz)
@ -13,11 +14,11 @@ name is "uz", it is extracted.
To install lz and uz, move put script in a directory in the PATH (for
instance /usr/local/bin) and hard link it to uz:
cp lz /usr/local/bin
cp lz.sh /usr/local/bin/lz
ln /usr/local/bin/{lz,uz}
# xzize #
# xzize.sh #
The xzize script compresses an uncompressed file, or recompresses a
compressed file to xz (with maximum compression level).

Näytä tiedosto

@ -1,6 +1,6 @@
#!/bin/sh
#
# lz, Copyright © 2010 Matteo Cypriani
# lz.sh, Copyright © 2010 Matteo Cypriani
#
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it

Näytä tiedosto

@ -1,6 +1,6 @@
#!/bin/sh
#
# xzize, Copyright © 2010 Matteo Cypriani
# xzize.sh, Copyright © 2010 Matteo Cypriani
#
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it

Näytä tiedosto

@ -1,5 +1,6 @@
capture.sh is a script to automatically capture a few packets on a Wi-Fi
interface and write them to a Pcap file along with some information
about the system, which are finally compressed into a tarball. The Pcap
file can then be analysed (for example with Wireshark) to check what the
interface supports on which operating system, using a given driver, etc.
capture-sample.sh is a script to automatically capture a few packets on
a Wi-Fi interface and write them to a Pcap file along with some
information about the system, which are finally compressed into a
tarball. The Pcap file can then be analysed (for example with Wireshark)
to check what the interface supports on which operating system, using a
given driver, etc.

Näytä tiedosto

@ -1,6 +1,6 @@
#!/bin/sh
#
# capture.sh, Copyright © 2011 Matteo Cypriani <mcy@lm7.fr>
# capture-sample.sh, Copyright © 2011 Matteo Cypriani <mcy@lm7.fr>
#
########################################################################
# This program is licensed under the terms of the Expat license.