📄 ex1a.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -