summarylogtreecommitdiffstats
path: root/sl
diff options
context:
space:
mode:
Diffstat (limited to 'sl')
-rw-r--r--sl9
1 files changed, 9 insertions, 0 deletions
diff --git a/sl b/sl
new file mode 100644
index 000000000000..31bd530d7979
--- /dev/null
+++ b/sl
@@ -0,0 +1,9 @@
+#!/bin/bash
+# sl - prints a mirror image of ls. (C) 2017 Tobias Girstmair, https://gir.st/, GPLv3
+
+LEN=$(ls "$@" |wc -L) # get the length of the longest line
+
+ls "$@" | rev | while read -r line
+do
+ printf "%${LEN}.${LEN}s\\n" "$line" | sed 's/^\(\s\+\)\(\S\+\)/\2\1/'
+done