mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00:00
9 lines
101 B
Bash
Executable File
9 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: listing,v 1.2 2007/05/28 12:40:36 tom Exp $
|
|
while true
|
|
do
|
|
ls -lrt
|
|
date
|
|
sleep 1
|
|
done
|