You want to use backtick not regular tick:
sudo kill `sudo lsof -t -i:9001` If that doesn't work you could also use $() for command interpolation:
sudo kill $(sudo lsof -t -i:9001)
Tuklified from : Stack Overflow
You want to use backtick not regular tick:
sudo kill `sudo lsof -t -i:9001` If that doesn't work you could also use $() for command interpolation:
sudo kill $(sudo lsof -t -i:9001)
Tuklified from : Stack Overflow
===== ## ubuntu OS info ===== | |
sudo lsb_release -a | |
===== ## build essential for ubuntu ===== | |
sudo apt-get install -y build-essential | |
sudo apt-get install libpng-dev libjpeg-dev -y | |
sudo apt-get install pngquant -y | |
sudo apt-get install unrar -y |
package review; | |
import java.util.Date; | |
import javax.annotation.Resource; | |
import org.springframework.boot.CommandLineRunner; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.context.annotation.Bean; |
<?xml version="1.0" encoding="UTF-8"?> | |
<persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence | |
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" | |
version="1.0"> | |
<!-- derby --> |