Skip to content

Move all rows in a tsv with a certain date to their own file

I have a TSV file with 4 columns in this format The 4th column is a date string Example : 2020-12-09 12:34:22 I want every row with the same date to go into its own file For example, file 20201209 should have all rows that start with 2020-12-09 in the 4th column file 20201210 should have all rows that start

Why does the Qemu run differ from the native run?

What did i do? I ran qemu-x86_64 -singlestep -d nochain,cpu ./dummy to dump all the registers of a dummy program after each instruction and used grep to save all the RIP values into a text file (qemu_rip_dump.txt). I then singlestepped the dummy program with ptrace and dumped the RIP values after each instruc…

modifying u-boot environment in kernel init

I’m trying to modify a u-boot env arg within the kernel code. I’ve found boot_command_line var in main.c and setup.c, which contains an arg, so that made me think it is possible, however, I coudn’t find where this var is being updated with the u-boot env arg value, or how to get a different …