skip to Main Content

Can't take mysqldump of long argument list

I've tried using previously accepted solutions for my problem, but they aren't working: Example "id_list" [jlefler@server ~]$ cat id_list | tail -10 17900018 17900019 17900020 17900021 17900022 17900023 17900024 17900025 17900026 17900027[jlefler@server ~]$ cat id_list |wc -l 51624 Command I'm…

VIEW QUESTION

Docker image build fails to explode jar

I'm trying to create a multi-stage Dockerfile FROM openjdk:11.0.7-jre-slim-buster AS build ... additional commands RUN mkdir -p target/exploded && (cd target/exploded; jar -xf ../*.jar) But it fails when trying to explode the .jar file, it is present under the target…

VIEW QUESTION
Back To Top
Search