Use the cut command to print the second column from the /tmp/example.txt file.
Introduction to text processing: wc, cut, tr
Cut text
Report a typo
Sample Input 1:
cat;meows;jumps
dog;barks;wagging its tail
mouse;squeaks;eats cheeseSample Output 1:
meows
barks
squeaksWrite a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.