56 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
	
| Sysinfo() {
 | |
| 	Target=$([ -f /etc/openwrt_info ] && cat /etc/openwrt_info | awk 'NR==3')
 | |
| 	Version=$([ -f /etc/openwrt_info ] && cat /etc/openwrt_info | awk 'NR==1' || Version=Unknown)
 | |
| 	[ -z "${Target}" ] && Target=$(jsonfilter -e '@.model.id' < /etc/board.json | tr ',' '_')
 | |
| 	IP_Address=$(ifconfig -a | grep inet | grep -v 127.0.0.1 | grep -v inet6 | awk '{print $2}' | tr -d "addr:" | awk 'NR==1')
 | |
| 	CoreMark=$([ -f /etc/bench.log ] && egrep -o "[0-9]+" /etc/bench.log | awk 'NR==1')
 | |
| 	[ -z "${CoreMark}" ] && CoreMark=Unknown
 | |
| 	Srartup=$(awk '{a=$1/86400;b=($1%86400)/3600;c=($1%3600)/60} {printf("%d 天 %d 小时 %d 分钟\n",a,b,c)}' /proc/uptime)
 | |
| 	Overlay_Available="$(df -h | grep ":/overlay" | awk '{print $4}' | awk 'NR==1')"
 | |
| 
 | |
| 	echo -e "\n\n           设备名称:		${Target}"
 | |
| 	echo "           固件版本:		${Version}"
 | |
| 	echo "           IP 地址: 		${IP_Address}"
 | |
| 	echo "           运行时间: 		${Srartup}"
 | |
| 	echo "           CoreMark: 		${CoreMark}"
 | |
| 	echo -e "           可用空间:		${Overlay_Available}\n"
 | |
| }
 | |
| 
 | |
| [ -e /tmp/.failsafe ] && export FAILSAFE=1
 | |
| clear
 | |
| [ -f /etc/banner ] && cat /etc/banner
 | |
| [ -n "$FAILSAFE" ] && cat /etc/banner.failsafe
 | |
| 
 | |
| fgrep -sq '/ overlay ro,' /proc/mounts && {
 | |
| 	echo "警告: 您的固件空间已满,接下来保存的数据将会面临丢失的风险."
 | |
| 	echo "请尝试从 /overlay 删除一些文件并重启设备!"
 | |
| }
 | |
| 
 | |
| export PATH="/usr/sbin:/usr/bin:/sbin:/bin"
 | |
| export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
 | |
| export HOME=${HOME:-/root}
 | |
| export PS1='\u@\h:\w\$ '
 | |
| export ENV=/etc/shinit
 | |
| 
 | |
| case "$TERM" in
 | |
| 	xterm*|rxvt*)
 | |
| 		export PS1='\[\e]0;\u@\h: \w\a\]'$PS1
 | |
| 		;;
 | |
| esac
 | |
| 
 | |
| [ -n "$FAILSAFE" ] || {
 | |
| 	for FILE in /etc/profile.d/*.sh
 | |
| 	do
 | |
| 		[ -e "$FILE" ] && . "$FILE"
 | |
| 	done
 | |
| 	unset FILE
 | |
| }
 | |
| 
 | |
| Sysinfo
 | |
| alias autoupdate='bash /bin/AutoUpdate.sh'
 | |
| alias AutoUpdate='bash /bin/AutoUpdate.sh'
 | |
| alias Tools='bash /bin/AutoBuild*.sh'
 | |
| alias tools='bash /bin/AutoBuild*.sh'
 | |
| alias coremarkd='bash /etc/coremark.sh'
 | |
| alias shutdown='sync && poweroff'
 |