summaryrefslogtreecommitdiffstats
path: root/root/.bash_aliases
diff options
context:
space:
mode:
Diffstat (limited to 'root/.bash_aliases')
-rw-r--r--root/.bash_aliases7
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 $@
}