mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
9 lines
101 B
Text
9 lines
101 B
Text
|
|
#!/bin/sh
|
||
|
|
# $Id: listing,v 1.2 2007/05/28 12:40:36 tom Exp $
|
||
|
|
while true
|
||
|
|
do
|
||
|
|
ls -lrt
|
||
|
|
date
|
||
|
|
sleep 1
|
||
|
|
done
|