batch

書式
setlocal enabledelayedexpansion
使用例

@echo off setlocal enabledelayedexpansionset m=0for/l %%n in (2,2,1 ...

batch

書式
%文字列変数%:~文字開始位置,文字数%
使用例

@echo off rem 変数strset str=study skill in arkgame rem 7文字目から6文字数を切り取るecho 結果1: ...

CentOS

1.OSバージョンを確認
# cat/etc/redhat-release
CentOS Stream release 8

2.現在のタイムゾーンを確認
# timedatectl
Loca ...

CentOS

OSバージョンを確認
# cat/etc/redhat-release
CentOS Stream release 8

1.ネットワークを設定
# nmcli connection modify e ...

CentOS

OSバージョンを確認
# cat/etc/redhat-release
CentOS Stream release 8

操作方法
1.ネットワークインターフェイスの状態確認
# nmcli ...

batch

書式
call:サブルーチン名
使用例

@echo off rem サブルーチン(subroutine)を呼び出すcall :cft rem errorleveの値を出力echo 終了コード%errorlevel ...

Ubuntu

1.バージョンの確認
# cat/etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=20.04
DISTRIB_CODENAME=focal
D ...

batch

書式
if %errorlevel% neq 0
使用例

@echo offtypeecho エラーコードの値: %errorlevel% if %errorlevel% neq 0 ( echo プログラムは異 ...

Cmd

書式
timeout <seconds>
待機する時間(タイムアウト時間)を指定します。
使用例

@echo off for/l %%n in (6,-1,1) do ( echo valu ...

Cmd

書式
timeout 時間
使用例

@echo off:repeatping 172.17.100.xxxrem 30秒毎に処理を繰り返すtimeout 30rem 同じ処理を繰り返すgoto repeat

...

Cmd

書式
type nul >ファイル名
copy nul >ファイル名
使用例

@echo offrem typeコマンドfor/l %%n in (1,1,3) do ( type nul & ...

Java

書式
public void applyPattern(String pattern)
指定されたパターン文字列を、この日付フォーマットに適用します。
使用例

package com.arkgame.st ...

Python

書式
move(移動前フォルダ,移動後フォルダ)
使用例

# coding: utf-8import shutilpa = "C:\\Study\\testA"pb = "C:\\Study\\skill\\te ...

Python

書式
os.mkdir(フォルダ名)
os.rmdir(フォルダ名)
使用例

# coding: utf-8import ospa = "C:\\Study\\testA"pb = "C:\\Study\ ...

Python

インストール方法
1.「python-3.9.2-amd64.exe」をダウンロードします。

2.「python-3.9.2-amd64.exe」をダブルクリックします。

3.「Add Python 3 ...

Python

書式
os.rename(変更前フォルダA, 変更後フォルダB)
使用例

# coding: utf-8import ospa = "C:\\Study\\testA"pb = "C:\\Study\\testB ...

Python

書式
os.path.isdir(パス名):
使用例

# coding: utf-8import ospt = "C:\\study"if os.path.isdir(pt): print("folder exi ...

CentOS

1.アップデート
#sudo dnf update

Install 5 Packages
Upgrade 99 Packages

Total download size: 424 M ...