Questions tagged [table]
The table tag has no summary.
72 questions
0 votes
1 answer
571 views
How do I get the physical address of the page table?
I was trying to get the physical address of the page table itself, but kept failing. The last option I'm going to try, is to modify the kernel code and simply print out the physical address whenever ...
1 vote
3 answers
633 views
How to filter a table using awk
I was wondering how to filter a table with several columns based on a specific value in each of the columns of interest. I have this example here: Chr1 16644 0 0 1 1 ...
0 votes
1 answer
89 views
Do shells have a command equivalent of the "|" pipe symbol? I need something like that in Emacs org-mode tables
I like to construct commands which use the | pipe symbol in org tables and | symbol messes them up. Do bash et al have a text command that is the equivalent of the symbol? Are there alternative ways ...
1 vote
3 answers
756 views
How to find first occurrence of string in log file, set T/F value as variable, and record changes that occur
I'm not sure how to title this, but here's what I've got: A file with text like: [10:03:43] 10:03:35 22JUN22 ConUP CW1B1 T CW1B3 T CW1B5 T CW1B7 T [10:03:44] ...
-3 votes
3 answers
13k views
How to transform bash output to bash table [closed]
My output after running a program in bash looks like this (two rows, : limiter, four columns of data) #003:BMW:11:36 #004:Audi:2:35 I would like to convert that to a bash table like this Number Car ID ...
0 votes
1 answer
50 views
Pasting files and concatating files together
I have various years and months of data for numerous site locations. I have computed the average for all months for each needed year. Each Month/Year has its own its own file. Not all sites have data ...
0 votes
1 answer
947 views
shell: combining several tables [duplicate]
Within same workdir I have several 2 column tables (with | separators between the columns) containing the same number of lines and share the order within the first column . Here is an example for two ...
1 vote
2 answers
208 views
Merge rows using common values in any column
I have a tab-delimited file like shown below, and would like to merge the rows based on matches in any of the columns. The number of columns are usually 2, but could vary in some cases and be 3. ...