Computer scienceSystem administration and DevOpsCommand lineText processing

Introduction to text processing: wc, cut, tr

Cut text

Report a typo

Use the cut command to print the second column from the /tmp/example.txt file.

Sample Input 1:

cat;meows;jumps
dog;barks;wagging its tail 
mouse;squeaks;eats cheese

Sample Output 1:

meows
barks
squeaks
Write a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here

}
___

Create a free account to access the full topic