Current Path : /proc/3/task/3/cwd/usr/lib/rpm/ |
Current File : //proc/3/task/3/cwd/usr/lib/rpm/rpm.daily |
#!/bin/sh tmpfile=`/bin/mktemp /var/log/rpmpkgs.XXXXXXXXX` || exit 1 /bin/rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}.rpm\n' 2>&1 \ | /bin/sort > "$tmpfile" if [ -s "$tmpfile" ]; then cp "$tmpfile" /var/log/rpmpkgs && /bin/chmod 0644 /var/log/rpmpkgs fi rm -f "$tmpfile"