cron
cron은 특정 시간에 특정 작업을 수행하게 하는 시스템 대몬입니다. 주기적으로 어떤 작업을 해야할 때 유용합니다.
crontab
crontab은 시간과 작업을 적은 텍스트 파일입니다. 사용자별로 파일이 존재합니다. cron은 모든 사용자의 crontab 파일을 찾아서, 적혀진 일정대로 작업을 수행합니다.
작업 목록 보기
예약 작업 목록을 보고 싶다면 다음과 같이 명령합니다.
function solution(board, moves) { | |
const basket = []; | |
let deleteItemCount = 0; | |
moves.forEach((v, i) => { | |
const item = grab(board, v); | |
if(item) { | |
if(item === basket[basket.length-1]) { | |
deleteItemCount += 2; | |
basket.splice(basket.length-1, 1); | |
return; |
cron은 특정 시간에 특정 작업을 수행하게 하는 시스템 대몬입니다. 주기적으로 어떤 작업을 해야할 때 유용합니다.
crontab은 시간과 작업을 적은 텍스트 파일입니다. 사용자별로 파일이 존재합니다. cron은 모든 사용자의 crontab 파일을 찾아서, 적혀진 일정대로 작업을 수행합니다.
예약 작업 목록을 보고 싶다면 다음과 같이 명령합니다.
const gulp = require("gulp") | |
const babel = require("gulp-babel") | |
const javascriptObfuscator = require('gulp-javascript-obfuscator') | |
const rename = require('gulp-rename') | |
const header = require('gulp-header') | |
const footer = require('gulp-footer') | |
const upload = require('gulp-upload') | |
const package = require('./package.json') |
#include <stdio.h> | |
#include <string.h> | |
struct info { | |
char name[5]; | |
char homeNumber[12]; | |
char phoneNumber[12]; | |
char email[100]; | |
} info; |
#include <iostream> | |
#include <string> | |
#include <map> | |
using namespace std; | |
int main(void) { | |
int wordLength; | |
string source; | |
map<string, int> dictionary; |
Module Module1 | |
Sub Main() | |
Const source = "테스트1,테스트1,테스트2,테스트1,테스트3,테스트2,테스트3,테스트1,테스트2,테스트3,테스트4" | |
'단어 파싱 | |
dim arr = Split(source, ",") | |
'갯수 저장용 딕셔너리 | |
Dim dic as new Dictionary(Of String, Integer) |