liunx 常用命令

1、关键字:

whereis

例如:whereishive则是找出hive环境变量配置在哪。

2、$PATH在shell变量中,不能出现$PATH定义,不然会将系统环境变量PATH覆盖,导致其他命令找不到。

3、赋权chmod+xxx.sh

4、shell读取文件行数

$file_path=text.txt

functionread(){

whilereadLINE

do

echo$LINE

done<$file_path

}