Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/strapi/node_modules/external-editor/ drwxr-xr-x | |
| Viewing file: Select action/file-type: var ExternalEditor = require('./main').ExternalEditor;
var readline = require('readline');
var rl = readline.createInterface({
input: process.stdin,
output: null
});
var message = '\n\n# Please Write a message\n# Any line starting with # is ignored';
process.stdout.write('Please write a message. (press enter to launch your preferred editor)');
editor = new ExternalEditor(message);
rl.on('line', function () {
try {
// Get response, remove all lines starting with #, remove any trailing newlines.
var response = editor.run().replace(/^#.*\n?/gm, '').replace(/\n+$/g, '').trim();
if (editor.lastExitStatus !== 0) {
process.stderr.write("WARN: The editor exited with a non-zero status\n\n")
}
if (response.length === 0) {
readline.moveCursor(process.stdout, 0, -1);
process.stdout.write('Your message was empty, please try again. (press enter to launch your preferred editor)');
} else {
process.stdout.write('Your Message:\n');
process.stdout.write(response);
process.stdout.write('\n');
rl.close();
}
} catch (err) {
process.stderr.write(err.message);
process.stdout.write('\n');
rl.close();
}
});
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]-- |