Sel Percent

PHOTO EMBED

Tue Jul 02 2024 00:38:26 GMT+0000 (Coordinated Universal Time)

Saved by @nouhad #mel

/********************************************************

	De-select a precentage of the selected Items

	Brian Samuels


********************************************************/

global proc selPercent(int $percent)
{

string $selected[] = `ls -sl -fl`;
string $sel;
int $rnd;
	for($sel in $selected)
	{
		$rnd = `rand 0 100`;
		if($rnd> $percent)
		{
			select -d $sel;

		}
	}

}

content_copyCOPY