前回のコミットから何も変更を加えていない状態。
$ git status
# On branch masternothing to commit, working directory clean
エディタでファイルを編集する
| grep -r --color --exclude-dir={custom,lib,scripts} --exclude={*.xml,error_log} "beta" . |
| ;; SandS for AutoHotkey | |
| ;; ===初期設定========================================================== | |
| ;; 多重起動の制御をforceに指定 | |
| #SingleInstance force | |
| ;; 環境変数を無視する | |
| #NoEnv |
| define(['modules/foo'], function (foo) { | |
| describe('test foo', function () { | |
| // ... | |
| }); | |
| }); |
| # | |
| # Cookbook Name:: install-private-CA-certificate | |
| # Recipe:: default | |
| # | |
| # Copyright 2013, YOUR_COMPANY_NAME | |
| # | |
| # All rights reserved - Do Not Redistribute | |
| # | |
| # 自己認証局のルート証明書 |
| 更新: | 2026-01-17 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2026.1 |
| URL: | https://voluntas.github.io/ |
typo などは https://x.com/voluntas までご連絡ください。
| """Pexpect is a Python module for spawning child applications and controlling | |
| them automatically. Pexpect can be used for automating interactive applications | |
| such as ssh, ftp, passwd, telnet, etc. It can be used to a automate setup | |
| scripts for duplicating software package installations on different servers. It | |
| can be used for automated software testing. Pexpect is in the spirit of Don | |
| Libes' Expect, but Pexpect is pure Python. Other Expect-like modules for Python | |
| require TCL and Expect or require C extensions to be compiled. Pexpect does not | |
| use C, Expect, or TCL extensions. It should work on any platform that supports | |
| the standard Python pty module. The Pexpect interface focuses on ease of use so | |
| that simple tasks are easy. |