linux 输出log
ls > ls.log 2>&1//查看当前目录下的文件,并输出到ls.log文件中2>&1表示正确的和错误的都输出echo 'test a' >echo.log 2>&1 //显示test a 输出到echo.log文件中//在shell中显示,输出date到date
·
ls > ls.log 2>&1 //查看当前目录下的文件,并输出到ls.log文件中 2>&1 表示正确的和错误的都输出
echo 'test a' >echo.log 2>&1 //显示test a 输出到echo.log文件中
//在shell中显示,输出date到date.log文件中
#!/bin/sh date -d now >date.log 2>&1
更多推荐
已为社区贡献1条内容
所有评论(0)