From 3635c96878e8ebdb83b7e00b68feb032e7c52ddb Mon Sep 17 00:00:00 2001 From: Carl Baldwin Date: Thu, 13 Oct 2005 21:16:24 -0600 Subject: [PATCH] Add shell script with example find command. --- find-cmd.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 find-cmd.sh diff --git a/find-cmd.sh b/find-cmd.sh new file mode 100755 index 0000000..e0f812b --- /dev/null +++ b/find-cmd.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +time find /server/home \ + \( -type d -o -type f -o -type l \) \ + -printf "%y %#m %g %u %s %CDT%CT %p\0" > list -- 2.34.1