mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:49:02 -08:00
10 lines
265 B
Bash
10 lines
265 B
Bash
#!/usr/bin/env zsh
|
|
# via: https://github.com/sorin-ionescu/prezto/
|
|
# this version uses tabs for input/output field separators.
|
|
# YES_ZSH
|
|
|
|
slitt() {
|
|
awk "BEGIN { FS=\"\\t\"; OFS=\"\\t\" } { print ${(j:,:):-\$${^@}} }"
|
|
}
|
|
|
|
[ "${SOURCING:-0}" -gt 0 ] || slitt "$@"
|