Onde coloco esse código para instalar o Absynth 5? [duplicado]

-2

Eu quero instalar o absynth 5 no meu computador. Eu encontrei este código, aqui está.

#!/bin/bash
# Date : (2013-02-01)
# Last revision : (2013-02-01)
# Distribution used to test : Kubuntu 12.04 LTS
# Author : DJYoshaBYD
# Licence : GPLv3
# PlayOnLinux: 4.1.9

# CHANGELOG
# [SuperPlumus] (2013-06-17 19-35)
#   Update gettext message


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

PREFIX="Absynth5"
WINEVERSION="1.3.0"
TITLE="Absynth 5"
EDITOR="Native Instruments"
GAME_URL="http://www.native-instruments.com"
AUTHOR="DJYoshaBYD"

#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init

POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

#Dependencies

# Configuration
Set_OS "winxp"
Set_SoundDriver "alsa"

# Installation
POL_Wine_WaitBefore "$TITLE"
GC_DONT_GC=1 POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "Absynth\ 5.exe" "$TITLE"

POL_SetupWindow_message "$(eval_gettext 'NOTICE: For low-latency audio, look into WineASIO.')" "$TITLE"

POL_SetupWindow_Close
exit 0

Mas eu acho que é suposto ir em algum lugar diferente do Terminal, porque no terminal depois de digitar #! / bin / bash eu ainda recebo um sinal $. Agradeço antecipadamente por toda sua ajuda.

    
por BJsgoodlife 10.09.2013 / 19:26

1 resposta

5

Estes não são comandos que devem ser inseridos na linha de comando. Quando você vir o texto com "#!" no início da primeira linha, indica que é um script. Você deve colocar o texto em um arquivo e executá-lo de uma só vez.

Abra seu editor de texto e cole o código em um novo arquivo. Salve o arquivo em "absynth5.sh".

Agora, use uma das respostas apresentadas aqui para executar o script:

Como posso executar arquivos .sh?

    
por Mark Carlson 10.09.2013 / 19:37