交互式让用户输入一个文件路径,判断文件是否存在,若存在判断文件类型,若文件是普通文件,不能使用wc。

    突然发现查看文件行数的那个脚本老师要求的是不让用wc命令,呵呵,再补充一个脚本:

#!/bin/bash
1let count=0
2read -p "please input a file:" A
3if ! test -e $A &> /dev/null ; then
4   echo "wrong"
5   exit 0
6elif  test -f $A &>/dev/null ;then
7   echo "$A is right"
8   echo "line is:"
9while read $B ;do
10    count=$((count+1))
11    done <$A
12    echo"$count"
13elif test -d $A &> /dev/null ; then
14     echo "$A is a dir"
15fi

你可能感兴趣的:(linux,职场,休闲)