В node.js и express.js можно создать файл с расширением .sh?
Сейчас у меня есть файл вывода, но без расширения:
ret = bash info goes here res.header('Content-Type', 'text/x-sh'); res.end(ret);
Это сработало для меня:
ret = bash info goes here res.header("Content-Disposition", "attachment; filename=" + "myfile.sh"); res.end(ret);