如何使用批处理脚本跨平台将文本追加到文件

时间:2018-11-28 06:20:25

标签: linux windows macos shell file

如何从批处理文件中将 <script type="text/javascript"> $('#cartGrid').on('keydown','input', function (e) { var keyCode = e.keyCode; if (keyCode !== 9) return; var $this = $(this), $lastTr = $('tr:last', $('#cartGrid')), $lastTd = $('td:last', $lastTr); if (($(e.target).closest('td')).is($lastTd)) { var cloned = $lastTr.clone(); cloned.find('input').val(''); $lastTr.after(cloned); } }); </script> <script> $(document).on('click', '.remove1', function() { var trIndex = $(this).closest("tr").index(); if(trIndex>0) { $(this).closest("tr").remove(); } else { alert("Sorry!! Can't remove first row!"); } }); </script> 附加到"some text"而不带引号?文本文件,仅在Windows,Linux和Mac上使用“标准”。

我确实尝试过:

file.txt

它适用于linux,但在Windows上也确实将引号输出到文件;

但是如前所述,我们确实需要一个跨平台命令(即,因为我们将在跨平台项目的MakeFile中使用它,但这是另一个主题)

1 个答案:

答案 0 :(得分:1)

您说echo "some text" >> file.txt有用,但您也得到了引号。没错,您只需要删除引号即可使用; )。