aboutsummaryrefslogtreecommitdiff
path: root/functions/rlsxattr.fish
diff options
context:
space:
mode:
authorDeposite Pirate2026-02-18 05:41:16 +0100
committerDeposite Pirate2026-02-18 05:41:16 +0100
commit20fe0b1e50e09ba6ff72caa59ec03c238a02fab7 (patch)
tree0a2ecc990d5951642815f7274df05805f1f8eb8a /functions/rlsxattr.fish
parentd9b2168480207200d3538d0a3db10187b00508c3 (diff)
Fix /dev/null redirections
modified: functions/rlsxattr.fish modified: functions/rsdos.fish modified: functions/rsxattr.fish
Diffstat (limited to 'functions/rlsxattr.fish')
-rw-r--r--functions/rlsxattr.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/rlsxattr.fish b/functions/rlsxattr.fish
index e52d820..94d9078 100644
--- a/functions/rlsxattr.fish
+++ b/functions/rlsxattr.fish
@@ -5,6 +5,6 @@ if not check_install 'getfattr' 'attr'
return 1
end
-command getfattr -R -h -d . 2>/dev/null | grep '^# file:' | sed 's/^# file: //'
+command getfattr -R -h -d . &>/dev/null | grep '^# file:' | sed 's/^# file: //'
end