Linux系统与shell环境准备
2020-09-08 本文已影响0人
info_gu
Linux的目录结构:
image.pngLinux基本命令:
image.png常见shell:
image.png#!/bin/bash 告诉是什么类型shell
echo "hello world"
如何执行该shell?
1.如果该shell有执行权限则:
/bin/sh test.sh
2.如果该shell没有执行权限则:
chmod +x ./test.sh #使脚本具有执行权限
./test.sh #执行脚本
Linux常用命令(文件/网络/性能)
文件操作:
image.png
修改文件属性:
image.png