The little things give you away... A collection of various small helper stuff
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

15 lignes
483 B

  1. #!/bin/bash
  2. prog0='BEGIN { FS="/"; OFS="/" }' # Set the field separators
  3. prog1='{ print }' # Print the input URL (if desired)
  4. prog2='/\/$/ { --NF }' # Remove the trailing blank field if the URL ends with a slash
  5. prog3='{ for (i = NF; i > 3; --i) { --NF; print $0 OFS; } }' # One by one, remove the last path component, print remaining fields
  6. prog="${prog0} "
  7. if [[ "$1" == '--with-original' ]]
  8. then
  9. prog="${prog}${prog1} "
  10. fi
  11. prog="${prog}${prog2} ${prog3}"
  12. exec awk "${prog}"