Nested Loops for text file [on hold]Replace text between bracketsCount the number of rows in each column of a...
What's a good pattern to calculate a variable only when it is used the first time?
How do figure out how powerful I am, when my abilities far exceed my knowledge?
Is it really Security Misconfiguration to show a version number?
How can I communicate my issues with a potential date's pushy behavior?
Sum Square Difference, which way is more Pythonic?
Solving a maximum minimum problem
A+ rating still unsecure by Google Chrome's opinion
Why do so many people play out of turn on the last lead?
What should we do with manuals from the 80s?
Why aren’t there water shutoff valves for each room?
What is the proper name for a circle with a line through it?
Is there a name for the technique in songs/poems, where the rhyming pattern primes the listener for a certain line, which never comes?
What exactly happened to the 18 crew members who were reported as "missing" in "Q Who"?
When was "Fredo" an insult to Italian-Americans?
Why do my bicycle brakes get worse and feel more 'squishy" over time?
A man in the desert is bitten by a skeletal animal, its skull gets stuck on his arm
Solving pricing problem heuristically in column generation algorithm for VRP
Why aren't rockets built with truss structures inside their fuel & oxidizer tanks to increase structural strength?
Sums of binomial coefficients weighted by incomplete gamma
Why are electric shavers specifically permitted under FAR §91.21
Output the list of musical notes
The more + the + comparative degree
When did Bilbo and Frodo learn that Gandalf was a Maia?
Some pads on a PCB are marked in clusters and I can't understand which one is which
Nested Loops for text file [on hold]
Replace text between bracketsCount the number of rows in each column of a text fileReplicate lines in text file according to a column valueSearch for pattern and append line to another filegawk - Dynamic creation of text file using input file fieldsCounting unique elements in text fileEditing text at a specific point on every line of a text filePrint text by stringPopulate a CSV file from data file with nested loops in bashUsing nested while loops for ffmpeg processing
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
A text file containing data something like
Vehicle: BMW Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Toyota Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Chevrolet Class
checkin_note:
Tyre : Five
path_id : 11
vault_file_size: -1
If Tyre = Four then Print Vehicle i.e. BMW/Chevrolet/Toyota
linux text-processing
New contributor
put on hold as unclear what you're asking by muru, dr01, vonbrand, GAD3R, Anthony Geoghegan 16 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
A text file containing data something like
Vehicle: BMW Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Toyota Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Chevrolet Class
checkin_note:
Tyre : Five
path_id : 11
vault_file_size: -1
If Tyre = Four then Print Vehicle i.e. BMW/Chevrolet/Toyota
linux text-processing
New contributor
put on hold as unclear what you're asking by muru, dr01, vonbrand, GAD3R, Anthony Geoghegan 16 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
5
this looks like home assignment. show what you've got so far, what issues you came across, where are you stuck and we'll gladly help you.
– Bart
yesterday
Hint: When usingsed
, store theVehicle:
line in the hold space; get it back and print it on theTyre: Four
line. Very easy syntax. No nesting, no loops.
– Philippos
yesterday
1
Your "sample output" might be a little misleading, since it appears to me that your Chevrolet input has Five Tyres, not Four.
– Jeff Schaller♦
yesterday
add a comment |
A text file containing data something like
Vehicle: BMW Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Toyota Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Chevrolet Class
checkin_note:
Tyre : Five
path_id : 11
vault_file_size: -1
If Tyre = Four then Print Vehicle i.e. BMW/Chevrolet/Toyota
linux text-processing
New contributor
A text file containing data something like
Vehicle: BMW Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Toyota Class
checkin_note:
Tyre : Four
path_id : 11
vault_file_size: -1
Vehicle: Chevrolet Class
checkin_note:
Tyre : Five
path_id : 11
vault_file_size: -1
If Tyre = Four then Print Vehicle i.e. BMW/Chevrolet/Toyota
linux text-processing
linux text-processing
New contributor
New contributor
edited yesterday
Kusalananda♦
160k18 gold badges316 silver badges502 bronze badges
160k18 gold badges316 silver badges502 bronze badges
New contributor
asked yesterday
vipinvipin
1
1
New contributor
New contributor
put on hold as unclear what you're asking by muru, dr01, vonbrand, GAD3R, Anthony Geoghegan 16 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as unclear what you're asking by muru, dr01, vonbrand, GAD3R, Anthony Geoghegan 16 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as unclear what you're asking by muru, dr01, vonbrand, GAD3R, Anthony Geoghegan 16 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
5
this looks like home assignment. show what you've got so far, what issues you came across, where are you stuck and we'll gladly help you.
– Bart
yesterday
Hint: When usingsed
, store theVehicle:
line in the hold space; get it back and print it on theTyre: Four
line. Very easy syntax. No nesting, no loops.
– Philippos
yesterday
1
Your "sample output" might be a little misleading, since it appears to me that your Chevrolet input has Five Tyres, not Four.
– Jeff Schaller♦
yesterday
add a comment |
5
this looks like home assignment. show what you've got so far, what issues you came across, where are you stuck and we'll gladly help you.
– Bart
yesterday
Hint: When usingsed
, store theVehicle:
line in the hold space; get it back and print it on theTyre: Four
line. Very easy syntax. No nesting, no loops.
– Philippos
yesterday
1
Your "sample output" might be a little misleading, since it appears to me that your Chevrolet input has Five Tyres, not Four.
– Jeff Schaller♦
yesterday
5
5
this looks like home assignment. show what you've got so far, what issues you came across, where are you stuck and we'll gladly help you.
– Bart
yesterday
this looks like home assignment. show what you've got so far, what issues you came across, where are you stuck and we'll gladly help you.
– Bart
yesterday
Hint: When using
sed
, store the Vehicle:
line in the hold space; get it back and print it on the Tyre: Four
line. Very easy syntax. No nesting, no loops.– Philippos
yesterday
Hint: When using
sed
, store the Vehicle:
line in the hold space; get it back and print it on the Tyre: Four
line. Very easy syntax. No nesting, no loops.– Philippos
yesterday
1
1
Your "sample output" might be a little misleading, since it appears to me that your Chevrolet input has Five Tyres, not Four.
– Jeff Schaller♦
yesterday
Your "sample output" might be a little misleading, since it appears to me that your Chevrolet input has Five Tyres, not Four.
– Jeff Schaller♦
yesterday
add a comment |
1 Answer
1
active
oldest
votes
Starting from this input (it's important to remove spaces around ":")
Vehicle:BMW Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Toyota Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Chevrolet Class
checkin_note:
Tyre:Five
path_id:11
vault_file_size:-1
and using this Miller (https://github.com/johnkerl/miller) command
mlr --x2c --ips ":" cut -o -f Tyre,Vehicle then nest --implode --values --across-records --nested-fs "/" -f Vehicle input.txt
you have
Tyre,Vehicle
Four,BMW Class/Toyota Class
Five,Chevrolet Class
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Starting from this input (it's important to remove spaces around ":")
Vehicle:BMW Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Toyota Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Chevrolet Class
checkin_note:
Tyre:Five
path_id:11
vault_file_size:-1
and using this Miller (https://github.com/johnkerl/miller) command
mlr --x2c --ips ":" cut -o -f Tyre,Vehicle then nest --implode --values --across-records --nested-fs "/" -f Vehicle input.txt
you have
Tyre,Vehicle
Four,BMW Class/Toyota Class
Five,Chevrolet Class
add a comment |
Starting from this input (it's important to remove spaces around ":")
Vehicle:BMW Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Toyota Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Chevrolet Class
checkin_note:
Tyre:Five
path_id:11
vault_file_size:-1
and using this Miller (https://github.com/johnkerl/miller) command
mlr --x2c --ips ":" cut -o -f Tyre,Vehicle then nest --implode --values --across-records --nested-fs "/" -f Vehicle input.txt
you have
Tyre,Vehicle
Four,BMW Class/Toyota Class
Five,Chevrolet Class
add a comment |
Starting from this input (it's important to remove spaces around ":")
Vehicle:BMW Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Toyota Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Chevrolet Class
checkin_note:
Tyre:Five
path_id:11
vault_file_size:-1
and using this Miller (https://github.com/johnkerl/miller) command
mlr --x2c --ips ":" cut -o -f Tyre,Vehicle then nest --implode --values --across-records --nested-fs "/" -f Vehicle input.txt
you have
Tyre,Vehicle
Four,BMW Class/Toyota Class
Five,Chevrolet Class
Starting from this input (it's important to remove spaces around ":")
Vehicle:BMW Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Toyota Class
checkin_note:
Tyre:Four
path_id:11
vault_file_size:-1
Vehicle:Chevrolet Class
checkin_note:
Tyre:Five
path_id:11
vault_file_size:-1
and using this Miller (https://github.com/johnkerl/miller) command
mlr --x2c --ips ":" cut -o -f Tyre,Vehicle then nest --implode --values --across-records --nested-fs "/" -f Vehicle input.txt
you have
Tyre,Vehicle
Four,BMW Class/Toyota Class
Five,Chevrolet Class
edited yesterday
answered yesterday
aborrusoaborruso
5134 silver badges15 bronze badges
5134 silver badges15 bronze badges
add a comment |
add a comment |
5
this looks like home assignment. show what you've got so far, what issues you came across, where are you stuck and we'll gladly help you.
– Bart
yesterday
Hint: When using
sed
, store theVehicle:
line in the hold space; get it back and print it on theTyre: Four
line. Very easy syntax. No nesting, no loops.– Philippos
yesterday
1
Your "sample output" might be a little misleading, since it appears to me that your Chevrolet input has Five Tyres, not Four.
– Jeff Schaller♦
yesterday