https://marc.info/?l=openbsd-cvs&m=147272695616766&w=2
https://marc.info/?l=openbsd-cvs&m=146826185625800&w=2
Hey its part of bsdGAMES not bsdGETSHITDONE :)
31–40 of 159 posts
https://marc.info/?l=openbsd-cvs&m=147272695616766&w=2
https://marc.info/?l=openbsd-cvs&m=146826185625800&w=2
Hey its part of bsdGAMES not bsdGETSHITDONE :)
There is also another command 'paste'. Example: Created two files (1.txt and 2.txt) [efg@fedori ~]$ cat 1.txt file1: line1 file1: line2 [efg@fedori ~]$ cat 2.txt file2: line1 file2: line2 In order to merge the lines of these two files we can use paste: [efg@fedori ~]$ paste 1.txt 2.txt file1: line1 file2: line1 file1: line2 file2: line2 Also check out 'man fold'
factor is buggy : factor 100000000000000000000000000000000000000 100000000000000000000000000000000000000: 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 http://www.wolframalpha.com/input/?i=factor+1000000000000000... also numfmt bug: $ numfmt --to=iec 999999999999999999939999999 828Y $ numfmt --to=iec 999999999999…
factor is buggy : factor 100000000000000000000000000000000000000 100000000000000000000000000000000000000: 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 http://www.wolframalpha.com/input/?i=factor+1000000000000000... also numfmt bug: $ numfmt --to=iec 999999999999999999939999999 828Y $ numfmt --to=iec 999999999999…
999999999999999999939999999 / 1024^8 827.18061255302767482177
factor is buggy : factor 100000000000000000000000000000000000000 100000000000000000000000000000000000000: 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 http://www.wolframalpha.com/input/?i=factor+1000000000000000... also numfmt bug: $ numfmt --to=iec 999999999999999999939999999 828Y $ numfmt --to=iec 999999999999…
You got the same answer from factor and Wolfram alpha; where is the bug?
It always pains me when I see people use "cat" left and right, even when they don't need it. This makes for good reading: http://porkmail.org/era/unix/award.html
One note: I believe `shred` won't work as expected on a journaling file system like ext4.
No. Ext4 doesn't do data journaling by default. Even when enabled, what's written to the journal is blank data that's about to be written, not the current file's contents. 1) write to journal "I'm going to overwrite this file with this data (zeros)" 2) commit journal 3) write data to file This is typical for journaling filesystems-- step 3 can be interrupted by a crash and replayed later (by re-reading the journal).…
I would assume that the concern with ext3/4 in data=journal mode is that shred does not guarantee that the records of previous writes are evicted from the journal.
I was really happy about tac when I found out about it, same with paste and comm as already mentioned. Gotten a lot of mileage out of the various seldom used options of uniq, diff and cut too.
Earlier quoted context omitted.
You got the same answer from factor and Wolfram alpha; where is the bug?
wa shows 76 prime factors, which is the not same as printing out a bunch of 2's and 5's
It always pains me when I see people use "cat" left and right, even when they don't need it. This makes for good reading: http://porkmail.org/era/unix/award.html
output.txt