Author

Topic: Looking for Bash/sed/awk specialist - offering crypto for help (Read 113 times)

tyz
legendary
Activity: 3360
Merit: 1533
Thanks a lot, I also got some offers of help via PN. I will take a closer look at them. @seoincoperation, I will contact you via PN as soon as I need help.

I close the thread here for now.
legendary
Activity: 3346
Merit: 3125
I use Bash, sed and awk heavily in my daily work. Since I am advanced user but not a professional in this field, I struggle to get some tasks done from time to time. Therefore I am looking for a professional who can help me here and there with bash commands, especially with sed and awk.

So, I am looking for someone I can contact when I need some support. I will pay in crypto (Bitcoin, ETH etc) for every request / help. The price is a matter of negotiation.

Hello tyz, I have a lot of experience with bash linux commands, in the past, I have done scripts involving sed and awk, and some other useful tools like cut, sort, grep, lynx...

As an example of my work I would like to share a couple of codes, the first one is to download all the images from a 4chan thread:

Code:
echo "Please input the thread link"
read lk
mkdir newImg
cd newImg
lynx --dump $lk | grep i.4cdn | cut -d " " -f3 | sort -u > lst.txt
for a in $(cat lst.txt)
do
wget $a
done

And the second one was one script to shorten URLs with adfly by batch:

Code:
#!/bin/bash
IFS=$'\n'
clear
echo "Select the file with the links:"
b=db1
d=$(cat $b.txt | wc -l)
for a in $(seq 221 $d)
do
e=$(cat $b.txt | sed -n "$a,$a p" | cut -d " " -f1)
c=$(curl "http://api.adf.ly/api.php?key=c4c50440XxXxXxXxXxXxXxXxX&uid=1000000&advert_type=int&domain=adf.ly&url=$e");
echo "$c $e"
echo "$c $e" >> gtaadfly$b.txt
done

The codes aren't big, but I have lots of them, I have a big experience with Bash (almost 20 years using it), if you need some help with your tasks just send me a PM.
tyz
legendary
Activity: 3360
Merit: 1533
I use Bash, sed and awk heavily in my daily work. Since I am advanced user but not a professional in this field, I struggle to get some tasks done from time to time. Therefore I am looking for a professional who can help me here and there with bash commands, especially with sed and awk.

So, I am looking for someone I can contact when I need some support. I will pay in crypto (Bitcoin, ETH etc) for every request / help. The price is a matter of negotiation.
Jump to: