Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. echo "Hola mundo, estoy usando el comando cut" | cut -d "," -f 1
  2. echo "Hola mundo, estoy usando el comando cut" | cut -d "," -f 2
  3. echo "Hola mundo, estoy usando el comando cut" | cut -c 10-15
  4. echo "Hola mundo, estoy usando el comando cut" | cut -c 1-15
  5. cut -d "," -f 1 archivo.txt
  6. cut -d "," -f 5 archivo.txt
  7. cut -d "," -f 1-5 archivo.txt
  8. cut -c 1,5 archivo.txt
  9. cut -c 1-5 archivo.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement