SyntaxFix
Write A Post
Hire A Developer
Questions
If your whitespace is consistent you could use that as a delimiter, also instead of inserting \t directly, you could set the output separator and it will be included automatically:
\t
< file awk -v OFS='\t' -v FS='[/ ]' '{print $3, $5, $NF}'