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

📄 ex-13-03_printf.sh

📁 Berkely的学生写的
💻 SH
字号:
#!/bin/sh# Chapter 13 - Using printf# This example demonstrates the use of the formatting directives in # the printf commandprintf "%-32s %s\n" "File Name" "File Type"for i in *;do    printf "%-32s " "$i"    if [ -d "$i" ]; then        echo "directory"    elif [ -h "$i" ]; then        echo "symbolic link"    elif [ -f "$i" ]; then        echo "file"    else        echo "unknown"    fi;done

⌨️ 快捷键说明

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