 shell command
# $1 - command
run_cmd(){
        echo $1
        eval $1
}

cd /home/root
run_cmd "df"
run_cmd "ls -R"

