0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Eclipse workspaceのバックアップ

Posted at

# 概要
Eclipse環境でデータをバックアップする

## データをアーカイブする

tar cfvz /home/`logname`/archive/eclipse`date +%y%m%d-%H%M`.tar.gz /home/`logname`/workspace
tar cfvz $HOME/archive/eclipse`date +%y%m%d-%H%M`.tar.gz $HOME/workspace

tar

アーカイブを生成・展開する

オプション 説明
c 新しくアーカイブを作成する
f アーカイブファイル名を指定する
v ファイルリストを表示する
z gzip形式圧縮・展開する

date

日時を表示・設定する

オプション 説明
+[format] 表示形式を形式で指定する
形式 説明
%y 西暦下2桁
%m 月(mm)
%d 日(dd)
%H 時(hh)(24時間制)
%M 分(mm)

logname

現在のログインユーザー名を表示する

$HOME

ログイン中のユーザーのホームディレクトリを表示する

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?