sort acl file based on filename
This commit is contained in:
8
sort_acl.sh
Executable file
8
sort_acl.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/bash
|
||||
# Sorts the output of getfacl records to stdout
|
||||
# Assumes filenames don't contain + and |
|
||||
|
||||
awk '
|
||||
BEGIN { RS="\n\n"; FS="\n"; ORS="\n"; OFS="|"}
|
||||
// { $2=$2; print }
|
||||
' | sort -k 1,1 -t '|' | tr '\n' '+' | sed 's/+/\n\n/g' | sed 's/|/\n/g'
|
Reference in New Issue
Block a user