44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
for i in $( find /opt/ -maxdepth 1 -name node-v\*-win-x64 -type d ); do
 | 
						|
	echo "  Selected node binary @$i"
 | 
						|
	export PATH=$PATH:"$i"
 | 
						|
	break
 | 
						|
done
 | 
						|
 | 
						|
for i in $( find /opt/ -maxdepth 1 -name nmap-\* -type d ); do
 | 
						|
	echo "  Selected nmap binary @$i"
 | 
						|
	export PATH=$PATH:"$i"
 | 
						|
	break
 | 
						|
done
 | 
						|
 | 
						|
if [ -n "$FrameworkVersion" ]; then
 | 
						|
	alias vsshell='echo "FrameworkVersion $FrameworkVersion"'
 | 
						|
	return
 | 
						|
fi
 | 
						|
 | 
						|
BAT_DIR=~/.local/lib/bat
 | 
						|
mkdir -p $BAT_DIR
 | 
						|
 | 
						|
VS_SHELL_BAT=$BAT_DIR/vs-env.bat
 | 
						|
 | 
						|
function vsshell {
 | 
						|
	_SHELL=$( cygpath -w -a $VS_SHELL_BAT )
 | 
						|
	cmd /c "$_SHELL"
 | 
						|
	exit
 | 
						|
}
 | 
						|
 | 
						|
if [ -f "$VS_SHELL_BAT" ]; then
 | 
						|
	_PATH=$( cygpath "$( grep -o "^@REM FILE_PATH: .\+" "$VS_SHELL_BAT" | cut -c 17- )" )
 | 
						|
	if [ ! -f "$_PATH" ]; then
 | 
						|
		START_MENU="$( cygpath $ProgramData )/Microsoft/Windows/Start Menu/"
 | 
						|
 | 
						|
		_PATH=$( find "$START_MENU" -name "*Command Prompt*" | grep "Visual Studio" | grep x64 | grep Native | xargs -I % readshortcut % -r | grep -o "\"\([^\"]\+\)\"" )
 | 
						|
 | 
						|
		echo "@echo off" > "$VS_SHELL_BAT"
 | 
						|
		echo "@REM FILE_PATH: ${_PATH:1:-1}" >> "$VS_SHELL_BAT"
 | 
						|
		echo "CALL $_PATH" >> "$VS_SHELL_BAT"
 | 
						|
		echo "START $( where mintty ) -i /Cygwin-Terminal.ico -" >> "$VS_SHELL_BAT"
 | 
						|
	fi
 | 
						|
fi
 |