Mac ファイルの内容をクリアする方法

Ubuntu 24.04 Jenkins をインストールするサンプル

環境
Ubuntu 24.04

概要

 

Ansible AWXをインストールする方法

環境
Ubuntu 24.04
minikube v1.33.0

Mac ファイルの内容をクリアする方法

環境
macOS Monterey
SHELL /bin/zsh

概要
ファイルの内容をクリアするには、空のデータとして使用できる「 /dev/null 」を「cat」コマンドで使用します。

使用例
「hello world」と記述された「test.txt」を作成してクリアしてみます。
ファイルを作成します。
% echo “hello world" > test.txt
% cat test.txt

<出力結果>
hello world

「cat /dev/null 」コマンドでクリアしてみます。
% cat /dev/null > test.txt

IT

Posted by arkgame