Command | Description |
---|---|
HISTSIZE | Commands saved in memory number (default: 500) |
HISTFILESIZE | Commands saved in history file (default: 500) |
HISTCONTROL | erasedups: erase previous duplicates |
shopt -s histappend | History additions are appended rather than overwritten |
history -a | Adds to history immediately?! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=webkit2gtk-dummy | |
pkgver=2.4.4 | |
pkgrel=1 | |
arch=('any') | |
pkgdesc="Best package in the universe" | |
url="http://foobar.org/tooptoo/bin/src/tip/repo-cache" | |
license=('GPL') | |
depends=() | |
makedepends=() | |
provide=('webkit2gtk') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=webkitgtk2-dummy | |
pkgver=2.4.4 | |
pkgrel=1 | |
arch=('any') | |
pkgdesc="Best package in the universe" | |
url="http://bitbucket.org/wooptoo/bin/src/tip/repo-cache" | |
license=('GPL') | |
depends=() | |
makedepends=() | |
provide=('webkitgtk2') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=webkitgtk-dummy | |
pkgver=2.4.4 | |
pkgrel=1 | |
arch=('any') | |
pkgdesc="Best package in the universe" | |
url="http://bitbucket.org/wooptoo/bin/src/tip/repo-cache" | |
license=('GPL') | |
depends=() | |
makedepends=() | |
provides=('webkitgtk') |
Command | Description |
---|---|
HISTSIZE | Commands saved in memory number (default: 500) |
HISTFILESIZE | Commands saved in history file (default: 500) |
HISTCONTROL | erasedups: erase previous duplicates |
shopt -s histappend | History additions are appended rather than overwritten |
history -a | Adds to history immediately?! |
Command | Descripttion |
---|---|
HISTSIZE | Commands saved in memory number (default: 500) |
HISTFILESIZE | Commands saved in history file (default: 500) |
HISTCONTROL | erasedups: erase previous duplicates |
shopt -s histappend | History additions are appended rather than overwritten |
history -a | Adds to history immediately?! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# A curl general download wrapper | |
# curl alias for: | |
# -l : redirect automatically | |
# -O : output filename is remote name | |
# -# : progress bar | |
# -w : (--write-out) print filename | |
# -A : user agent | |
# : resume difficult (wget -c, better): http://tinyurl.com/7umwyl3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# A curl general download wrapper | |
# curl alias for: | |
# -l : redirect automatically | |
# -O : output filename is remote name | |
# -# : progress bar | |
# -w : (--write-out) print filename | |
# -A : user agent | |
# : resume difficult (wget -c, better): http://tinyurl.com/7umwyl3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# (ge)ntoo (pa)ckages - A generic, package tasks script for Gentoo Linux | |
# Required programs | |
req_prgs=(emerge euse sudo) | |
for prog in ${req_prgs[@]}; do | |
if ! hash "$prog" 2>&- ; then | |
echo >&2 ""${0##*/}": requires program: "$prog"" | |
error=y ;fi ; done | |
[ "$error" = y ] && exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# (ge)ntoo (pa)ckages - A generic, package tasks script for Gentoo Linux | |
# Required programs | |
req_prgs=(emerge euse sudo) | |
for prog in ${req_prgs[@]}; do | |
if ! hash "$prog" 2>&- ; then | |
echo >&2 ""${0##*/}": requires program: "$prog"" | |
error=y ;fi ; done | |
[ "$error" = y ] && exit 1 |
NewerOlder