N
N
Nirr0hope2015-02-07 00:26:34
Perl
Nirr0hope, 2015-02-07 00:26:34

Hello! Do you have any perl or python script that could generate it?

The following is required:
In the script, write the following line: http://vk.com/pages?oid=-884635&p=number
And so that the script can give me:
vk.com/pages?oid=-884635&p=1
vk.com/pages? oid=-884635&p=2
vk.com/pages?oid=-884635&p=3
vk.com/pages?oid=-884635&p=4
vk.com/pages?oid=-884635&p=5
and further up to the number to which I need.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Saboteur, 2015-02-07
@Nirr0hope

for ($page=1; $page <= $ARGV[1]; $page++) { print "${ARGV[0]}$page\n"; }
run
myscript.pl <number of pages>

A
Azim Kurt, 2015-02-07
@Symphony

Press F12 → Console
Paste this:

var maxNum = 100;
for(var i=1;i <= maxNum;i++){
    console.log('http://vk.com/pages?oid=-884635&p='+i);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question