1
0
Files
2022-09-29 17:59:04 +03:00

11 lines
123 B
Bash

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