mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-18 22:15:46 +01:00
4c8945a06b
dialog is distributed from GPLv2 to LGPLv2 and introduces a number of new features and a new and better libdialog API. The existing libdialog will be kept temporarily as libodialog for compatibility purposes until sade, sysinstall and tzsetup have been either updated or replaced. __FreeBSD_version is now 900030. Discussed on: -current Approved by: core Obtained from: http://invisible-island.net/dialog
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
|