用shell编程判断一文件是不是字符设备文件
答案:1 悬赏:30 手机版
解决时间 2021-03-20 02:48
- 提问者网友:焚苦与心
- 2021-03-19 06:49
用shell编程判断一文件是不是字符设备文件
最佳答案
- 五星知识达人网友:慢性怪人
- 2021-03-19 08:13
#!/bin/bash
#filename char.sh
# sh char.sh filename
file=$1
if [ -c $file ];
then
echo "$file is a Char device"
else
echo "$file is not a char device"
#filename char.sh
# sh char.sh filename
file=$1
if [ -c $file ];
then
echo "$file is a Char device"
else
echo "$file is not a char device"
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯