質問編集履歴
3
回答いただいた方法を試した結果の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -144,8 +144,30 @@
|
|
144
144
|
|
145
145
|
|
146
146
|
|
147
|
+
回答いただいた
|
148
|
+
|
149
|
+
tar -zcvf $dirpath/$filename new -C $backupfolder
|
150
|
+
|
151
|
+
では、エラーが表示される。
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
```sh
|
156
|
+
|
157
|
+
tar: The following options were used after any non-optional arguments in archive create or update mode. These options are positional and affect only arguments that follow them.
|
158
|
+
|
159
|
+
Please, rearrange them properly.
|
160
|
+
|
161
|
+
tar: -C `/home/user/folder/new' has no effect
|
162
|
+
|
163
|
+
```
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
147
169
|
### 補足情報
|
148
170
|
|
149
171
|
|
150
172
|
|
151
|
-
|
173
|
+
補足などあればここに記載します。
|
2
shパスが間違っていたのを修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -104,7 +104,7 @@
|
|
104
104
|
|
105
105
|
mydate=`date +%y%m%d%H%M%S`
|
106
106
|
|
107
|
-
filename=$target"
|
107
|
+
filename=$target"datebkup_$mydate.tar.gz"
|
108
108
|
|
109
109
|
|
110
110
|
|
1
誤字修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,11 +34,11 @@
|
|
34
34
|
|
35
35
|
|
36
36
|
|
37
|
-
/home/user/folder
|
37
|
+
/home/user/folder というパスのnewフォルダにあるファイルのみを、
|
38
38
|
|
39
39
|
backup_yymmddhhmmss.tar.gzという名前でバックアップしたい。
|
40
40
|
|
41
|
-
*圧縮フ
|
41
|
+
*圧縮フォルダ内はnewフォルダのみにしたい。
|
42
42
|
|
43
43
|
|
44
44
|
|