gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
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.
12 lines
330 B
12 lines
330 B
#!/bin/bash
|
|
# LinuxGSM command_skeleton.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://linuxgsm.com
|
|
# Description: Creates an copy of a game servers directorys.
|
|
|
|
|
|
fn_print_dots ""
|
|
check.sh
|
|
|
|
# Find all directorys and create them in the skel directory
|
|
find ${rootdir} -type d -not \( -path ./skel -prune \) | cpio -pdvm skel
|
|
|