003 File Manager
Current Path:
/usr/src/sys/contrib/openzfs/scripts
usr
/
src
/
sys
/
contrib
/
openzfs
/
scripts
/
📁
..
📄
.gitignore
(10 B)
📄
Makefile.am
(2.46 KB)
📄
commitcheck.sh
(2.87 KB)
📄
common.sh.in
(637 B)
📄
cstyle.pl
(26.17 KB)
📄
dkms.mkconf
(2.93 KB)
📄
dkms.postbuild
(595 B)
📄
enum-extract.pl
(955 B)
📄
kmodtool
(18.41 KB)
📄
make_gitrev.sh
(2 KB)
📄
man-dates.sh
(339 B)
📄
paxcheck.sh
(1.18 KB)
📄
zfs-helpers.sh
(4.46 KB)
📄
zfs-tests.sh
(16.78 KB)
📄
zfs.sh
(5.4 KB)
📄
zfs2zol-patch.sed
(1.14 KB)
📄
zimport.sh
(13.78 KB)
📄
zloop.sh
(8.2 KB)
📄
zol2zfs-patch.sed
(809 B)
Editing: man-dates.sh
#!/bin/sh # This script updates the date lines in the man pages to the date of the last # commit to that file. set -eu find man -type f | while read -r i ; do git_date=$(git log -1 --date=short --format="%ad" -- "$i") [ "x$git_date" = "x" ] && continue sed -i "s|^\.Dd.*|.Dd $(date -d "$git_date" "+%B %-d, %Y")|" "$i" done
Upload File
Create Folder