Bitcoin Forum
May 13, 2024, 10:56:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Looking for Bash/sed/awk specialist - offering crypto for help  (Read 91 times)
tyz (OP)
Legendary
*
Offline Offline

Activity: 3360
Merit: 1531



View Profile
May 03, 2021, 05:43:46 PM
 #1

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.
1715597779
Hero Member
*
Offline Offline

Posts: 1715597779

View Profile Personal Message (Offline)

Ignore
1715597779
Reply with quote  #2

1715597779
Report to moderator
1715597779
Hero Member
*
Offline Offline

Posts: 1715597779

View Profile Personal Message (Offline)

Ignore
1715597779
Reply with quote  #2

1715597779
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
seoincorporation
Legendary
*
Offline Offline

Activity: 3150
Merit: 2937


Top Crypto Casino


View Profile
May 03, 2021, 09:51:08 PM
Merited by tyz (2)
 #2

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.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
tyz (OP)
Legendary
*
Offline Offline

Activity: 3360
Merit: 1531



View Profile
May 06, 2021, 07:51:48 PM
Merited by seoincorporation (1)
 #3

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.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!