-
/etc/periodic/15min/sync-mirror-alpine → /usr/local/bin/sync-mirror (symlink)
-
/etc/sync-mirror.d/alpine.conf
-
/usr/local/bin/sync-mirror
-
/var/www/mirrors/alpine
This file contains hidden or 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/sh | |
msg_file='/etc/issue' | |
test_ips='208.67.222.222 2620:0:ccc::2' | |
my_ips=$(printf '%s\n' $test_ips \ | |
| xargs -rn 1 ip route get 2>/dev/null \ | |
| grep -v unreachable \ | |
| sed -En 's/.* src ([0-9a-f.:]+) .*/\1/p' \ | |
| xargs) |
Úvaha na téma vyhledávání informací, kterou jsem napsal při studiích na FIT ČVUT v roce 2012.
This file contains hidden or 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/sh | |
# vim: set ts=4: | |
set -e | |
if [ $# -eq 0 ] || [ "$1" = '-h' ]; then | |
cat >&2 <<-EOF | |
Usage: git edit <tree-ish> | |
git edit [-h] | |
Start interactive rebase to edit the specified commit. |
Includes tweets created between 2017-02-03 and 2017-02-06
-
Number of tweets (excluding RTs): 5597
-
Number of likes: 19306
-
Number of retweets: 8697
-
Number of tweeting users: 1720
Archive of all tweets is available here.
This file contains hidden or 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
Files structure: | |
/ | |
|-- etc | |
| |-- acme (700) | |
| | |-- privkey.pem (400) | |
| | |-- request-cert (750) | |
| | `-- update-certs (750) | |
| |-- periodic/weekly/acme-update (750) | |
| `-- ssl/acme (755) |
This file contains hidden or 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
# Contributor: André Klitzing <[email protected]> | |
# Maintainer: André Klitzing <[email protected]> | |
pkgname=ripgrep | |
pkgver=0.5.1 | |
pkgrel=0 | |
pkgdesc="ripgrep combines the usability of The Silver Searcher with the raw speed of grep" | |
url="https://github.com/BurntSushi/ripgrep" | |
arch="x86_64" # limited by cargo pkg | |
license="MIT public-domain" | |
makedepends="cargo" |
This file contains hidden or 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
Moved to https://github.com/alpinelinux/alpine-make-vm-image |