Displaying 4 results from an estimated 4 matches for "ope46".
2019 May 01
1
HERE document in docker script file
...nto /)
>
> bash -c "$(/bin/echo -e "cat <<EOF | tee -a /tmp/test.txt \
> \n<test> \
> \n something here \
> \n</test>
> EOF
> ")"
>
> I also removed the single apex from the first 'EOF'.
>
> I get:
>
> [g.cecchi at ope46 ~]$ ll /tmp/test.txt
> ls: cannot access '/tmp/test.txt': No such file or directory
>
> [g.cecchi at ope46 ~]$ bash -c "$(/bin/echo -e "cat <<EOF | tee -a
> /tmp/test.txt \
>> \n<test> \
>> \n something here \
>> \n</test>
>> E...
2019 Apr 30
3
HERE document in docker script file
I am trying to use a HERE document in a docker script file to generate a text file but must be doing something wrong since I get a warning message that I did not expect:
EOF: line 6: warning: here-document at line 0 delimited by end-of-file (wanted `EOF')
This is the sample script I am testing in my docker file:
RUN bash -c "$(/bin/echo -e "cat << 'EOF' | tee -a
2016 Dec 13
1
Trying virgl in fedora 25
...hat worked ok with "normal"spice and I'm trying to
configure with virgl
Main components currently installed on host:
qemu-kvm-2.7.0-7.fc25.x86_64
libvirt-2.2.0-2.fc25.x86_64
virt-manager-1.4.0-4.fc25.noarch
VirtualGL-2.4-7.fc25.x86_64
Commands executed to modify configuration:
[root@ope46 qemu]# virt-xml f25 --confirm --edit --video
clearxml=yes,model=virtio,accel3d=yes
--- Original XML
+++ Altered XML
@@ -94,8 +94,9 @@
<address type="pci" domain="0x0000" bus="0x00" slot="0x04"
function="0x0"/>
</sound>
&...
2019 Apr 30
0
HERE document in docker script file
...tmp/test.txt as I tested
as non root user that cannot write into /)
bash -c "$(/bin/echo -e "cat <<EOF | tee -a /tmp/test.txt \
\n<test> \
\n something here \
\n</test>
EOF
")"
I also removed the single apex from the first 'EOF'.
I get:
[g.cecchi at ope46 ~]$ ll /tmp/test.txt
ls: cannot access '/tmp/test.txt': No such file or directory
[g.cecchi at ope46 ~]$ bash -c "$(/bin/echo -e "cat <<EOF | tee -a
/tmp/test.txt \
> \n<test> \
> \n something here \
> \n</test>
> EOF
> ")"
<test>...