ex1a.sh

来自「Shall高级编程」· Shell 代码 · 共 20 行

SH
20
字号
#!/bin/bash# Proper header for a Bash script.# Cleanup, version 2# Run as root, of course.# Insert code here to print error message and exit if not root.LOG_DIR=/var/log# Variables are better than hard-coded values.cd $LOG_DIRcat /dev/null > messagescat /dev/null > wtmpecho "Logs cleaned up."exit # The right and proper method of "exiting" from a script.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?