Por alguna razón, esta función está funcionando correctamente, el terminal está enviandofiesta Sintaxis de error: "(" inesperada
newbootstrap.sh: 2: Syntax error: "(" unexpected
Aquí está mi código (línea 2 es la función MoveToTarget() {
)
#!/bin/bash
function MoveToTarget() {
#This takes to 2 arguments: source and target
cp -r -f "$1" "$2"
rm -r -f "$1"
}
function WaitForProcessToEnd() {
#This takes 1 argument. The PID to wait for
#Unlike the AutoIt version, this sleeps 1 second
while [ $(kill -0 "$1") ]; do
sleep 1
done
}
function RunApplication() {
#This takes 1 application, the path to the thing to execute
exec "$1"
}
#our main code block
pid="$1"
SourcePath="$2"
DestPath="$3"
ToExecute="$4"
WaitForProcessToEnd $pid
MoveToTarget $SourcePath, $DestPath
RunApplication $ToExecute
exit
Gracias! Tiene sentido ahora. Vi algunos sitios web que hicieron eso. – rsmith
@rsmith ese sitio web era incorrecto, entonces. –
@rsmith Nombra el sitio o fue un sueño :-) – Jens