aboutsummaryrefslogtreecommitdiff
path: root/bin/mftl.awk
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-11 00:09:24 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-11 00:09:24 +1300
commit960208a496240318b38a6a6cfdf1f5e266099c85 (patch)
treede7ff197a3514d3e0bcfa6acbfa748b2738c5692 /bin/mftl.awk
parentRemove superfluous calls to next in sec(1df) (diff)
downloaddotfiles-960208a496240318b38a6a6cfdf1f5e266099c85.tar.gz
dotfiles-960208a496240318b38a6a6cfdf1f5e266099c85.zip
Stylistic tweaks to awk scripts
Diffstat (limited to 'bin/mftl.awk')
-rw-r--r--bin/mftl.awk4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/mftl.awk b/bin/mftl.awk
index 893766ef..21976337 100644
--- a/bin/mftl.awk
+++ b/bin/mftl.awk
@@ -2,9 +2,7 @@
# could be reasonably expected to call directly
# Separators are space, tab, or colon
-BEGIN {
- FS = "[ \t:]"
-}
+BEGIN { FS = "[ \t:]" }
# Skip comments
/^#/ { next }