sh 用于测试写入json格式文件的简单脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 用于测试写入json格式文件的简单脚本相关的知识,希望对你有一定的参考价值。
## Simple script to test writing to json formatted file.
#!/bin/bash
# Get hostname
hostname=`hostname -A` 2> /dev/null
# Get distro
distro=`python -c 'import platform ; print platform.linux_distribution()[0] + " " + platform.linux_distribution()[1]'` 2> /dev/null
# Get uptime
if [ -f "/proc/uptime" ]; then
uptime=`cat /proc/uptime`
uptime=${uptime%%.*}
seconds=$(( uptime%60 ))
minutes=$(( uptime/60%60 ))
hours=$(( uptime/60/60%24 ))
days=$(( uptime/60/60/24 ))
uptime="$days days, $hours hours, $minutes minutes, $seconds seconds"
else
uptime=""
fi
printf '{"hostname":"%s","distro":"%s","uptime":"%s"}\n' "$hostname" "$distro" "$uptime"
以上是关于sh 用于测试写入json格式文件的简单脚本的主要内容,如果未能解决你的问题,请参考以下文章
用于监控日志文件的是否被修改的脚本
以json格式将对象写入zip文件
sh 一个简单的Bash脚本,用于在Nexus设备上缓存和测试Ubuntu Touch频道。请参阅https://developer.ubuntu.com/en/start/ubuntu-for-de
Node读取和写入json,格式化输出json
如何将map写入文件
sh 简单的bash脚本,用于获取并将执行文件夹中的所有repos拉到它们所在的最新分支