aboutsummaryrefslogtreecommitdiff
path: root/commands.md
diff options
context:
space:
mode:
authorEduardo Julian2021-07-29 19:23:23 -0400
committerEduardo Julian2021-07-29 19:23:23 -0400
commit54b28c1caeda08965c258411a32229be1766d47f (patch)
treeee0eecd3a009f80e716f2c3c07095bc80d3b70bb /commands.md
parent5d4583aebd00adced10275b32ff1a93ab418be50 (diff)
Switched from the "from to" convention to the "minimum additional" convention.
Diffstat (limited to 'commands.md')
-rw-r--r--commands.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands.md b/commands.md
index a94dee8a7..00c3e621a 100644
--- a/commands.md
+++ b/commands.md
@@ -2,6 +2,9 @@
```
cd ~/lux/ && find . -name '*.lux' | xargs wc -l
+
+## Sorted by number of lines per file.
+cd ~/lux/ && find . -name '*.lux' | xargs wc -l | sort -rn
```
---