Skip to content

Instantly share code, notes, and snippets.

@Buravo46
Buravo46 / init.md
Created August 2, 2023 09:06
【CentOS】7zipのコマンド実行

概要

7zipのコマンド「7zzs」を用いてファイルの圧縮&解凍を実施する。

前提

  • 環境
    CentOS7
  • インストール済み
    7zip 22.1
@Buravo46
Buravo46 / init.md
Last active August 1, 2023 15:05
【CentOS】7zipのインストール手順

概要

CentOS上で7Zipのインストールをする。
yumからのインストールではなく、curlコマンドでダウンロードしたファイルを展開しコマンドとして使えるようにする手順となる。

手順

  • パッケージのアップデート
yum update -y nss curl libcurl tar
@Buravo46
Buravo46 / init.md
Created May 21, 2023 02:42
【PowerShell】vimの設定

概要

PowerShellでファイル編集したい。
editコマンドが使えなくなっていたのでコマンドライン上からファイル編集できるように対応したい。

前提

実行ポリシーの変更をしていないこと
Microsoft.PowerShell_profile.ps1が存在していないこと

環境

@Buravo46
Buravo46 / Vagrantfile
Last active February 18, 2019 13:52
【Vagrant】プロビジョニングでWebサーバー構築の自動化
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@Buravo46
Buravo46 / Util.java
Created March 27, 2018 11:48
【Java】ユーティリティクラス
/**
* Created by Buravo on 2017/02/27.
*/
public class Util {
private Util() {}
public static String GetParameter(String[] args, String param) {
for(int i = 0; i <= args.length; i++){
if(args[i].equals(param)){
@Buravo46
Buravo46 / hackmd_install.md
Last active March 20, 2018 14:47
【Hackmd】インストール手順メモ

概要

Hackmdの構築

※下記手順でERROR発生中

手順

  • yum
yum update -y
@Buravo46
Buravo46 / template
Created September 5, 2017 14:11
【Bash】コマンド作成用のテンプレート
#! /bin/bash
# Command
COMMAND=$(basename ${0})
shift
# Default
OPTION="DEFAULT"
function usage {
@Buravo46
Buravo46 / template.sh
Created September 5, 2017 14:02
【Bash】コマンドやオプションなどを使用したい場合のテンプレートシェルスクリプト
#! /bin/bash
# Command
COMMAND=$(basename ${0})
# SubCommand
SUB_COMMAND=${1}
shift
# Default
OPTION="DEFAULT"
@Buravo46
Buravo46 / embulk_tips.md
Created June 4, 2017 07:15
【Embulk】インストールとサンプル実行

手順

# install java
yum install -y java-1.8.0-openjdk-devel.x86_64
# install embulk
curl --create-dirs -o ~/.embulk/bin/embulk -L "https://dl.embulk.org/embulk-latest.jar"
chmod +x ~/.embulk/bin/embulk
echo 'export PATH="$HOME/.embulk/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
@Buravo46
Buravo46 / shell_tips.md
Created June 1, 2017 13:48
【Shell】エラー処理
  • $?で判定のパターン
grep -e "hoge" hoge.txt
if [ $? -ne 0 ]; then
  echo "error"
fi
  • 条件文でコマンド実行のパターン
if ls hoge.txt ; then