mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
800 B
33 lines
800 B
6 years ago
|
## make-it-better
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
6 years ago
|
Create the files and directories so that when you use the command `ls` below the output will look like this :
|
||
6 years ago
|
|
||
|
```console
|
||
5 years ago
|
$ TZ=utc ls -l --time-style='+%F %R' | sed 1d | awk '{print $1, $6, $7, $8, $9, $10}'
|
||
6 years ago
|
dr-------x 1986-01-05 00:00 0
|
||
|
-r------w- 1986-11-13 00:01 1
|
||
|
-rw----r-- 1988-03-05 00:10 2
|
||
|
lrwxrwxrwx 1990-02-16 00:11 3 -> 0
|
||
|
-r-x--x--- 1990-10-07 01:00 4
|
||
|
-r--rw---- 1990-11-07 01:01 5
|
||
|
-r--rw---- 1991-02-08 01:10 6
|
||
|
-r-x--x--- 1991-03-08 01:11 7
|
||
|
-rw----r-- 1994-05-20 10:00 8
|
||
|
-r------w- 1994-06-10 10:01 9
|
||
6 years ago
|
dr-------x 1995-04-10 10:10 A
|
||
5 years ago
|
$
|
||
6 years ago
|
```
|
||
|
|
||
|
Once it's done, use the command below to create the file `done.tar` to be submitted.
|
||
|
|
||
|
```console
|
||
5 years ago
|
$ tar -cf done.tar *
|
||
|
$ ls
|
||
6 years ago
|
0 1 2 3 4 5 6 7 8 9 A done.tar
|
||
5 years ago
|
$
|
||
6 years ago
|
```
|
||
|
|
||
|
**Only `done.tar` should be submitted.**
|