1 Star 0 Fork 2

Lv Ying / A-Tune-BPF-Collection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
start_readahead_tune 538 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
function usage()
{
echo "Usage: $0 [ -h | --help] [ -c | --config CONFIG_FILE ]"
exit 0
}
options=$(getopt -q -o hc: --long help,config: -- "$@")
if [ $? -ne 0 ]; then
echo "Invaild option!"
usage
fi
eval set -- "$options"
conf="/etc/sysconfig/readahead_tune.conf"
while true;
do
case "$1" in
-h | --help)
usage ;;
-c | --config)
conf="$2"
shift 2 ;;
-- )
shift
break ;;
* )
echo "Unexpected option: $1 - this should not happen."
usage ;;
esac
done
/usr/sbin/readahead_tune -v -c $conf
1
https://gitee.com/lvying6/A-Tune-BPF-Collection.git
git@gitee.com:lvying6/A-Tune-BPF-Collection.git
lvying6
A-Tune-BPF-Collection
A-Tune-BPF-Collection
master

搜索帮助