ex-13-03_printf.sh

来自「Berkely的学生写的」· Shell 代码 · 共 21 行

SH
21
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?