File: programbox

package info (click to toggle)
dialog 1.1-20120215-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,740 kB
  • sloc: ansic: 14,903; sh: 7,688; makefile: 392; perl: 355; python: 164
file content (19 lines) | stat: -rwxr-xr-x 268 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# $Id: programbox,v 1.1 2011/03/02 01:17:28 tom Exp $

. ./setup-vars

. ./setup-tempfile

ls -1 >$tempfile
(
while true
do
read text
test -z "$text" && break
ls -ld "$text"
sleep 0.1
done <$tempfile
) |

$DIALOG --title "PROGRAMBOX" "$@" --programbox 20 70