Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
     5         kx MC_USER=`id | sed 's/[^(]*(//;s/).*//'`
     5         kx MC_PWD_FILE="${TMPDIR-/tmp}/mc-$MC_USER/mc.pwd.$$"
     5         kx /usr/bin/mc -P "$MC_PWD_FILE" "$@"
     5         kx 
     5         kx if test -r "$MC_PWD_FILE"; then
     5         kx 	MC_PWD="`cat "$MC_PWD_FILE"`"
     5         kx 	if test -n "$MC_PWD" && test -d "$MC_PWD"; then
     5         kx 		cd "$MC_PWD"
     5         kx 	fi
     5         kx 	unset MC_PWD
     5         kx fi
     5         kx 
     5         kx rm -f "$MC_PWD_FILE"
     5         kx unset MC_PWD_FILE