Windows cmd

时间:2015-05-05 16:18:09

标签: unix cmd

我正试图在unix和windows环境中编写一些脚本。我在尝试为以下内容编写等效的Windows命令时遇到问题:

cmd = "cat raw_data.txt | awk -F\"}\" '{for(i =1; i<=NF-1; i++){print $i\"}\"}}' | sed 's/^,//' | sed 's/^[ \t]*//;s/[ \t]*$//' | sed 's/^{//; s/}$//'"

1 个答案:

答案 0 :(得分:3)

type file1 >> file2
as 
cat file1 file2 > file3

type是与cat命令等效的类型,但它只能具有部分功能