- Compress a file (
filename.sqlwill be replaced byfilename.sql.xz)
xz filename.sql
- Uncompress file (
filename.sql.xzwill be replaced byfilename.sql)
| HANDY ONE-LINERS FOR SED (Unix stream editor) Oct. 29, 1997 | |
| compiled by Eric Pement <[email protected]> version 4.3 | |
| Latest version of this file is always at <http://www.wollery.demon.co.uk> | |
| FILE SPACING: | |
| # double space a file | |
| sed G | |
| # triple space a file | |
| sed 'G;G' |
| #!/bin/sh | |
| ## | |
| # This script contains helper for sha256 validating your downloads | |
| # | |
| # Source: https://gist.github.com/onnimonni/b49779ebc96216771a6be3de46449fa1 | |
| # Author: Onni Hakala | |
| # License: MIT | |
| ## | |
| # Stop program and give error message |