Search Results

Search: Posts Made By: bigvito19
1,714
Posted By bigvito19
How to generate adler32 stings that convert into hex stings in python 2.7?
I want to generate adler32 stings that converts into hex stings in python 2.7
2,544
Posted By bigvito19
I put [:-6] and it did remove the extra zeros but...
I put [:-6] and it did remove the extra zeros but I had to expand the space to get the desired numbers of characters I wanted.
2,544
Posted By bigvito19
Thanks that did remove the L.
Thanks that did remove the L.
2,544
Posted By bigvito19
Yes I want the extra characters to be remove...
Yes I want the extra characters to be remove because I'm running this script against another script. It needs to be on hex form.
2,544
Posted By bigvito19
Yes I'm using python.2.7 on Ubuntu and Centos
Yes I'm using python.2.7 on Ubuntu and Centos
2,544
Posted By bigvito19
How to convert dec to hex in python?
When I try to convert big numbers I get extra numbers at the end that doesn't move plus an L character too. How to remove the 4 extra characters at the end 000L?

8b8dbbc584d9c000L
...
2,406
Posted By bigvito19
No I been wanted to print the first file entirely...
No I been wanted to print the first file entirely and then print the second file side by side making new lines as comes down the first file. I made a few examples.
2,406
Posted By bigvito19
I tried everything that's been posted, paste,...
I tried everything that's been posted, paste, cat, awk.
2,406
Posted By bigvito19
How would I be able to get line 123 to to match...
How would I be able to get line 123 to to match up with every line to the left ex.
abc123
def123
ghi123 and so on?
2,406
Posted By bigvito19
How much time? I'm not worried about how much...
How much time? I'm not worried about how much time it will take. I know it will take a some time to complete. I agree that paste will be the best option for the task. I'm using xubuntu 4.12 and...
2,406
Posted By bigvito19
How to print file1 first then print file2 beside...
How to print file1 first then print file2 beside it after file1 has finished printed?
2,406
Posted By bigvito19
I posted the code --- Post updated at 09:14...
I posted the code

--- Post updated at 09:14 PM ---



With paste, how could I print 1 file first then have another file print on the side of it, printing against file 1? I want the second file...
2,406
Posted By bigvito19
How to print 1 file then when finished another file prints beside it?
I have 2 big files over 4Gbs each. I'm looking for a way to print 1 file, then when that file finish printing another file proceeds to print beside it and merge the lines together. How would to cmd...
1,175
Posted By bigvito19
Where to add the time.sleep()?
Where to add the time.sleep()?
1,175
Posted By bigvito19
I have 2 files that print on the same line at the...
I have 2 files that print on the same line at the same time. I wanted to add time.sleep() to 1 of the textfiles. I wanted to delay the time that 1 textfile prints with the other 1 in this script. I...
1,175
Posted By bigvito19
Add timer to 1 of these files in this script
I have 2 files that print on the same line at the same time. I wanted to add time.sleep() to 1 of the textfiles. I wanted to delay the time that 1 textfile prints with the other 1 in this script. I...
3,868
Posted By bigvito19
How to run 2 python scripts at the same time side by side on the same line?
Could I run 2 python scripts at the same time side by side output on the same line in this same format but with scripts?


from itertools import izip_longest

with open("file1") as textfile1,...
1,658
Posted By bigvito19
Print a python script down a list in a text file without printing a lot combinations
In a python script I have 2 files printing side by side on the same line. I want to have 1 of the files to be already displayed at once while the other file print down the list in the file and it...
4,495
Posted By bigvito19
core file size (blocks, -c) 0 data seg...
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals ...
2,313
Posted By bigvito19
My updated example ...
My updated example

https://i.imgur.com/1vWLqHM.jpg

Bash: 100: command not found

IOError: [Errno 32] Broken pipe
4,495
Posted By bigvito19
Well it seems I need to use something other than...
Well it seems I need to use something other than awk, awk was suggested to be use by someone on this post, so I gave it a try. I am open to use other tools though.
4,495
Posted By bigvito19
I only put 2 files in the shell script, I had put...
I only put 2 files in the shell script, I had put 2 very small files to test it out and I was getting outputs from that. Then when I tried 2 bigger files, it didn't have any output after that then...
4,495
Posted By bigvito19
awk ' NR==FNR {a[c++]=$0; next;} {b[++d]=$0;}...
awk '
NR==FNR {a[c++]=$0; next;}
{b[++d]=$0;}
END { for (i=0; i<c; i++) {
for (j=0; j<c; j++) print a[j], b[(j-i)<0?(c+j-i):(j-i)];
print _;
}
}' a b


I was using...
2,313
Posted By bigvito19
https://i.imgur.com/tPixEmO.jpg ...
https://i.imgur.com/tPixEmO.jpg


This is the pipe hex example

example.py | file1./another program will be here

Example of...
4,495
Posted By bigvito19
it just said line 11: 7605 Killed I can...
it just said line 11: 7605 Killed

I can open a file with a python script or with the paste cmd but with bigger files seems like I can't use the awk.
Showing results 1 to 25 of 35

 
All times are GMT -4. The time now is 07:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy