zl程序教程

您现在的位置是:首页 >  其它

当前栏目

BASH: read file to stdout

to File Read Bash
2023-09-11 14:16:15 时间

 

< file cat

dd iflag=nonblock status=none if=file

printf '%s' "$(< file)"

cp file /dev/stdout

awk '{print}' file

sed '' file