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 set MC_USER="`id | sed 's/[^(]*(//;s/).*//'`"
     5         kx 
     5         kx if ($?TMPDIR) then
     5         kx 	setenv MC_PWD_FILE $TMPDIR/mc-$MC_USER/mc.pwd.$$
     5         kx else
     5         kx 	setenv MC_PWD_FILE /tmp/mc-$MC_USER/mc.pwd.$$
     5         kx endif
     5         kx 
     5         kx /usr/bin/mc -P "$MC_PWD_FILE" $*
     5         kx 
     5         kx if (-r "$MC_PWD_FILE") then
     5         kx 	setenv MC_PWD "`cat '$MC_PWD_FILE'`"
     5         kx 	if ( -d "$MC_PWD" ) then
     5         kx 		cd "$MC_PWD"
     5         kx 	endif
     5         kx 	unsetenv MC_PWD
     5         kx endif
     5         kx 
     5         kx rm -f "$MC_PWD_FILE"
     5         kx unsetenv MC_PWD_FILE