studentProjectAllocation

(★ 34)

An implementation of Abraham et al's (2007) algorithm for allocation of student projects

파일 탐색기

  • .gitignore
  • fileFormatDetails.txt
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

perl

설명 보기 ▼

Perl 5 언어 인터프리터.
관련 항목: `perldoc`.
더 많은 정보: <https://perldoc.perl.org/perl>.

perl -n -e 'print if m/regex1/ and m/regex2/i'

`stdin`에서 `regex1`과 일치하고 대소문자를 구분하지 않는 `regex2`와 일치하는 행 출력:

perl -n -E 'say $1 if m/{{before}} ( {{group_regex}} ) {{after}}/x'

공백을 무시하고 `regex`를 사용하여 첫 번째 매치 그룹 출력:

perl -i'.bak' -p -e 's/regex/{{replacement}}/g' {{path/to/files}}

백업과 함께 제자리에서 모든 `regex` 발생을 대체:

// repository documentation