您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1.1_SystemInfo.sh 199B

1234567891011
  1. #!/bin/bash
  2. . ./inc/utils.sh
  3. mkdir -p sys-info
  4. cat /proc/cpuinfo > sys-info/cpu.txt
  5. free -h > sys-info/mem.txt
  6. df -h > sys-info/disk.txt
  7. echo "sys-info 폴더에 정보를 저장했습니다..."