質問編集履歴
2
現時点のソースを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,15 @@
|
|
20
20
|
[after ] -rw-r--r-- 1 infrauser infragrp 244 4月 27 21:20 kadai6_3_1.txt
|
21
21
|
|
22
22
|
#スクリプト内
|
23
|
-
|
23
|
+
#!/bin/sh
|
24
|
+
|
25
|
+
echo -n '[date ] ';
|
26
|
+
date '+%Y/%m/%d %H:%M:%S';
|
27
|
+
echo -n '[before] ';
|
28
|
+
ls -l 'kadai6_3_1.txt';
|
29
|
+
chmod 644 kadai6_3_1.txt;
|
30
|
+
echo -n '[after ] ';
|
31
|
+
ls -l 'kadai6_3_1.txt';
|
24
32
|
|
25
33
|
#実行後
|
26
34
|
[ infrauser@infrastd1s:~/infradir99 ] ./chmod.sh
|
1
現時点のソースを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,5 +19,17 @@
|
|
19
19
|
[before] -rwxr-xr-x 1 infrauser infragrp 244 4月 27 21:20 kadai6_3_1.txt
|
20
20
|
[after ] -rw-r--r-- 1 infrauser infragrp 244 4月 27 21:20 kadai6_3_1.txt
|
21
21
|
|
22
|
+
#スクリプト内
|
23
|
+
回答者様のファイル
|
24
|
+
|
25
|
+
#実行後
|
26
|
+
[ infrauser@infrastd1s:~/infradir99 ] ./chmod.sh
|
22
|
-
|
27
|
+
[date ]2023/0912 12:57:48
|
28
|
+
[before]ls: cannot access kadai6_3_1.txt: No such file or directory
|
29
|
+
chmod: cannot access kadai6_3_1.txt’: No such file or directory
|
30
|
+
[after ]ls: cannot access kadai6_3_1.txt: No such file or directory
|
31
|
+
[ infrauser@infrastd1s:~/infradir99 ]
|
32
|
+
|
33
|
+
#改善すべきところ
|
34
|
+
任意のファイル・パーミッションを入力後、更新前後の内容を出力しなければならず
|
23
|
-
|
35
|
+
そのためにスクリプト内にて、echoや変数を用いるのでしょうがやり方がわかりません…
|