Centos 7.6 Shell Obtain IO

Centos 7.6 Shell Obtain IO_第1张图片

Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁。Shell 既是一种命令语言,又是一种程序设计语言。

Shell 是指一种应用程序,这个应用程序提供了一个界面,用户通过这个界面访问操作系统内核的服务。

Ken Thompson 的 sh 是第一种 Unix Shell,Windows Explorer 是一个典型的图形界面 Shell。

编写实例

vi  io-test.sh

#!/bin/bash
# -*- coding: utf-8 -*-
# CIAS
# Date: 2019-09-10

echo "===========I/O WRITE TEST==========="
echo "Write level contains: 1G/1, 64M/1, 1M/256, 8K/10K, 512/1K"

echo "Write Level: 1G/1"
dd if=/dev/zero of=/tmp/test1g.img bs=1G count=1 oflag=dsync

echo "Write Level: 64M/1"
dd if=/dev/zero of=/tmp/test64m.img bs=64M count=1 oflag=dsync

echo "Write Level: 1M/256"
dd if=/dev/zero of=/tmp/test1m-256.img bs=1M count=256 conv=fdatasync

echo "Write Level: 8K/10K"
dd if=/dev/zero of=/tmp/test8k-10k.img bs=8k count=10k

echo "Write Level: 512/1K"
dd if=/dev/zero of=/tmp/test512-1000.img bs=512 count=1000 oflag=dsync

echo "Delete Test Files"
rm -rf /tmp/test*.img

echo "DONE."

exit 0

 

你可能感兴趣的:(shell)