11 lines
123 B
Bash
11 lines
123 B
Bash
#!/bin/sh
|
|
read line
|
|
set $line
|
|
case "$1" {
|
|
/usr/etc/cached\[*)
|
|
echo "$line\c"
|
|
exit 0
|
|
;;
|
|
}
|
|
exit 0
|