Как создать каталог и файлы внутри каталога

Вы можете прочитать об управлении процессами ядра Linux, например. здесь

Process Termination

When a process terminates, the kernel releases the resources owned by the process and notifies the child's parent of its demise.

-1
06.02.2020, 09:32
1 ответ

Я получил ответ

mkdir -p mydir/{colors,shape,animals}

mkdir -p mydir/colors/{basic,blended}
touch mydir/colors/basic/{red,blue,green}
touch mydir/colors/blended/{yellow,orange,pink}
touch mydir/shape/{circle,square,cube}

mkdir -p mydir/animals/{mammals,reptiles} 
touch mydir/animals/mammals/{platypus,bat,dog}
touch mydir/animals/reptiles/{snakes,crocodile,lizard}
0
28.04.2021, 23:24

Теги

Похожие вопросы