]> Sergey Matveev's repositories - nnn.git/commitdiff
Add plugin uidgid
authorArun Prakash Jana <engineerarun@gmail.com>
Wed, 2 Oct 2019 18:46:44 +0000 (00:16 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Wed, 2 Oct 2019 18:46:44 +0000 (00:16 +0530)
plugins/README.md
plugins/uidgid [new file with mode: 0755]

index 976348fab6a149c8778f18500e6a4475a25114f2..3cf0c701aaa1445dd787c0abf8c566375931e5b8 100644 (file)
@@ -38,6 +38,7 @@ The currently available plugins are listed below.
 | sxiv | sh | sxiv | View images in dir, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts))|
 | thumb | sh | [lsix](https://github.com/hackerb9/lsix) | View thumbnail of an image or dir of images |
 | transfer | sh | curl | Upload file to transfer.sh |
+| uidgid | sh | ls, less | List user and group of all files in dir |
 | upgrade | sh | curl | Upgrade nnn manually on Debian 9 Stretch |
 | vidthumb | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) | Show video thumbnails in terminal |
 | viuimg | sh | [viu](https://github.com/atanunq/viu), less | View an image or images in dir in `$PAGER` |
diff --git a/plugins/uidgid b/plugins/uidgid
new file mode 100755 (executable)
index 0000000..5cffa65
--- /dev/null
@@ -0,0 +1,8 @@
+#!/usr/bin/env sh
+
+# Description: list uid and gid of files
+#
+# Shell: POSIX compliant
+# Author: Arun Prakash Jana, superDuperCyberTechno
+
+ls -laht | less