⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 what.sh

📁 一本完整的描述Unix Shell 编程的工具书的所有范例
💻 SH
字号:
#!/bin/bash# What are all those mysterious binaries in /usr/X11R6/bin?DIRECTORY="/usr/X11R6/bin"# Try also "/bin", "/usr/bin", "/usr/local/bin", etc.for file in $DIRECTORY/*do  whatis `basename $file`   # Echoes info about the binary.doneexit 0# You may wish to redirect output of this script, like so:# ./what.sh >>whatis.db# or view it a page at a time on stdout,# ./what.sh | less

⌨️ 快捷键说明

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