From 66713730f07ff8fd6ac1222eef880f69f18166cd Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 3 Oct 2019 00:16:44 +0530 Subject: [PATCH] Add plugin uidgid --- plugins/README.md | 1 + plugins/uidgid | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100755 plugins/uidgid diff --git a/plugins/README.md b/plugins/README.md index 976348fa..3cf0c701 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -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),
[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 index 00000000..5cffa65a --- /dev/null +++ b/plugins/uidgid @@ -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