C#

書式
public interface インターフェース名
public class クラス名:インターフェース名
使用例

using System;namespace ProjectTest{//インタ ...

PHP

書式
abstract class クラス名 {
public 変数名
使用例

<?php//抽象クラスabstract class Sample { abstract function getMe ...

Linux

tar.xzファイルの圧縮
1.対象ファイルを検索
# ls -l test*.txt
-rw-r–r–. 1 root root 23 4月 25 18:28 test.txt

PHP

書式
final public function 関数名()
使用例

<?phpclass User{//finalメソッド final public function getMsg(){ return " ...

PHP

書式
abstract class クラス名 {
function 関数名()
使用例

<?php//抽象クラスabstract class Sample { abstract function g ...

PHP

書式
abstract class クラス名 {
abstract function メソッド名
}
使用例

<?php//抽象クラスabstract class Sample { abst ...

PHP

書式
compact ( array|string $var_name , array|string …$var_names )
: array
各引数について、compact() は現在のシンボル ...

PHP

書式
public function __construct(引数名)
使用例

<?phpclass User{ public $userName;//コンストラクタ public function __c ...

PHP

書式
compact ( array|string $var_name , array|string …$var_names ) : array
compact — 変数名とその値から配列を作成する

C#

書式
@foreach (string 変数名 in 配列名)
使用例

@{ Layout = null; var target = new</p> }</body></html&g ...

jQuery

書式
$(“#IDセレクタ名”).html(xxx)
$(“.classセレクタ名”).html(xxx)
$(“属性セレクタ名”).pr ...

Python

書式
配列.reverse()
使用例

cftLst = print("reverse result before")print(cftLst)cftLst.reverse()print("reverse res ...

shellscript

書式
for 変数名 in “$*”;do
処理コード
done
使用例

#!/bin/bashecho "**特殊変数\* サンプル sampleAA ***-"for ...

Linux

説明
/etc/passwd ユーザのアカウント情報
/etc/shadow 暗号化されたパスワードやパスワードの有効期限
使用例
# useradd test001

有効期限の確認 ...

Linux

書式
logger -p syslog.info -t タグ名 ”メッセージ内容”

使用例
# logger -p syslog.info -t arkgame “thi ...

Linux

# date
2021年 4月 21日 水曜日 20:40:00 EDT

使用例1
「年/月/日」の書式
%a: 曜日
# date “+%Y%m%d (%a)” ...

VB.net

書式
メソッド名(ByVal 変数名)
使用例

Module ModuleTest Sub Main() Dim y as Integer = 5 testFunc(y) Console.WriteLine(y) ...

PHP

書式
preg_match(正規表現式,対象文字列)
使用例

<?php$cft = "//";echo preg_match($cft,"XYZ"). "<br>"; echo preg_ma ...