1. 목표
명령줄에 작성한 명령을 입력하여 대상 작업을 완료하세요
명령줄 요구 사항은 전역적으로 유효합니다
명령줄 요구 사항은 삭제할 수 있습니다
명령줄 기능, 현재 날짜를 표시하는 파일 생성
2. 코드 부분
새 파일을 만들고 이름을 sherryFile
파일 내용 sherryFile
으로 지정합니다. 현재 파일의 내용이 있는 파일 날짜와 작성자
#! /usr/bin/env node console.log('command start'); const fs = require('fs'); let date = new Date().toLocaleDateString(); let data = date + '\n\t' + '——create By karuru'; fs.writeFile('./date.txt', data, 'utf8', (err) => { if (err) { console.log('sherryFile command wrong', err); return false; } console.log('writeFile success!!!!'); console.log('command end'); });
파일에 실행 권한을 부여합니다 chmod 755 sherryFile
파일이 있는 파일 경로에 ./sherryFile
을 입력하세요
다음과 같은 내용이 출력되면 명령어 실행이 성공한 것입니다writeFile 성공!!!!command start
command end
2/28/2018파일 디렉터리에 새로운 date.txt 파일이 생성됩니다. 다음 내용
create By karuru
명령어를 전역적으로 유효하도록 수정
ln sherryFile /usr/local/bin/sherryFile🎜명령 삭제🎜🎜
rm /usr/local/bin/sherryFile
위 내용은 Node.js를 사용하여 Linux에서 명령줄 도구를 작성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!