8 lines
139 B
Plaintext
8 lines
139 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
SSV_DFS_FILE=/sys/kernel/debug/ssv/ssv_cmd
|
||
|
if [ -f $SSV_DFS_FILE ]; then
|
||
|
echo "$*" > $SSV_DFS_FILE
|
||
|
cat $SSV_DFS_FILE
|
||
|
fi
|