diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2023-07-18 19:59:22 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2023-07-18 19:59:22 +0200 |
commit | 8437ede36fe4a3c2921bd6ec86e8b748137054b5 (patch) | |
tree | ce223ca62bab665f2a5dc1b0de2b15c0b69072d5 /root/.bash_aliases | |
parent | b (diff) | |
download | n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.tar n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.tar.gz n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.tar.bz2 n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.tar.lz n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.tar.xz n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.tar.zst n-8437ede36fe4a3c2921bd6ec86e8b748137054b5.zip |
Diffstat (limited to 'root/.bash_aliases')
-rw-r--r-- | root/.bash_aliases | 7 |
1 files changed, 5 insertions, 2 deletions
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 "<td>" | 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 "<td>" | 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 "(<td>.*</td>)|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 $@ } |