Code<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"><!-- saved from url=(0053)http://www.div-css.com/f/too...
Auto Formatting PowerShell in Visual Studio Code
1.安装visual studio code
2.安装powershell extension
3.打开脚本文件
4.F1,然后输入format,找到format document的选项
但是这个用起来有点不太理想,傻乎...
#!/bin/bashprintf "%d %s\n" 1 "abc"printf '%d %s\n' 1 "abc"printf %s "abc"printf %s abc defprintf %d 1printf "%s\n" abc defprintf "%s %s %s\n" 1 a b c d e f g h iprintf "%s and %d \n"输出结果:1 abc1 ...