mirror of
https://github.com/notwa/rc
synced 2025-02-05 07:43:22 -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 "$@"
|