8 Star 4 Fork 2

openEuler/A-Tune-BPF-Collection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
start_readahead_tune 614 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# change working directory to current binary position
cd "$(dirname "$0")"
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/A-Tune-BPF-Collection.git
git@gitee.com:openeuler/A-Tune-BPF-Collection.git
openeuler
A-Tune-BPF-Collection
A-Tune-BPF-Collection
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385