8 lines
147 B
Bash
Executable file
8 lines
147 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
MNT=$(buildah mount builder)
|
|
|
|
rm -rf ~/fedora_home_clone
|
|
cp -r $MNT/home/student ~/fedora_home_clone
|
|
|
|
buildah unmount builder
|