Guest User

Untitled

a guest
Oct 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if [ -n "$1" ]; then
  2. file=$1
  3. else
  4. file=( $(ls -xt *.sln | head -n1))
  5. fi
  6. if [ -z "$file" ]; then
  7. echo "No solution found."
  8. exit 1
  9. fi
  10. /c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio\ 11.0/Common7/IDE/devenv.exe "$file" &
Add Comment
Please, Sign In to add comment