mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
4fd51a0069
Update test/data/ksh.ksh
18 lines
296 B
Bash
Executable File
18 lines
296 B
Bash
Executable File
#!/bin/ksh
|
|
# 17 lines, 11 code, 4 comments, 2 blanks
|
|
|
|
# first comment
|
|
files="/etc/passwd /etc/group /etc/hosts"
|
|
for f in $files; do
|
|
if [ ! -f $f ]
|
|
then
|
|
echo "$f file missing!"
|
|
fi
|
|
done
|
|
|
|
# second comment
|
|
for f in $(ls /tmp/*)
|
|
do
|
|
print "Full file path in /tmp dir : $f"
|
|
done
|