From 8437ede36fe4a3c2921bd6ec86e8b748137054b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Tue, 18 Jul 2023 19:59:22 +0200 Subject: c: pfl, dist.sh (+posodobi.sh) --- root/.bash_aliases | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'root/.bash_aliases') diff --git a/root/.bash_aliases b/root/.bash_aliases index cdef3c5..1ec2481 100644 --- a/root/.bash_aliases +++ b/root/.bash_aliases @@ -1,7 +1,7 @@ export CT_ALLOW_BUILD_AS_ROOT_SURE=1 function register () { - n=`curl https://www.register.si | grep nonce | head -n 1 | cut -d\" -f8` - curl https://www.register.si/wp-admin/admin-ajax.php -X POST --data-raw "_ajax_nonce=$n&action=get_whois_data&domain=`sed s/.si\$//g <<<$1`.si" 2> /dev/null | grep "" | sed "s/^\s*//g" | cut -d\< -f2 | cut -d\> -f2 | grep "[[:print:]]" + n=`curl -s https://www.register.si | grep nonce | head -n 1 | cut -d\" -f8` + curl -s https://www.register.si/wp-admin/admin-ajax.php -X POST --data-raw "_ajax_nonce=$n&action=get_whois_data&domain=`sed s/.si\$//g <<<$1`.si" | grep "" | sed "s/^\s*//g" | cut -d\< -f2 | cut -d\> -f2 | grep "[[:print:]]" } alias r=R alias R="R --quiet" @@ -30,6 +30,9 @@ function upload () { ssh upload@upload.sijanec.eu chmod 0644 "www/$d" echo https://upload.sijanec.eu./$d | xclip } +function pfl () { + curl -s https://portagefilelist.de/index.php?fs=$1 | grep -E "(.*)|package" | php -r "echo strip_tags(file_get_contents('php://stdin'));" | sed 's/^[ ]*//g' | grep -v Packages | grep -v Search | grep -v Unique | grep / | tr $'\n' , | sed -e "s/\([^,]*\),\([^,]*\),/$(color green)\2$(color off) \1,/g" | tr , $'\n' | grep `sed -e 's/\*//g' <<<$1` +} function mcd () { mkdir -p $@ && cd $@ } -- cgit v1.2.3