ソースを参照

add sl function

Josh Bicking 6 年 前
コミット
0cca402b76
1 ファイル変更14 行追加0 行削除
  1. 14 0
      zsh/.zshrc

+ 14 - 0
zsh/.zshrc

@@ -113,6 +113,20 @@ alias emacs-term='\emacs -nw'
 # alias for vim muscle memory when quitting
 alias :q='exit'
 
+function sl_func() {
+    # 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
+
+}
+
+alias sl=sl_func
+
 # vi bindings
 #bindkey -v
 #export KEYTIMEOUT=1