Coder Social home page Coder Social logo

i can not use xidle with file about xidel HOT 4 CLOSED

esmmusavi avatar esmmusavi commented on September 26, 2024
i can not use xidle with file

from xidel.

Comments (4)

Freezystem avatar Freezystem commented on September 26, 2024

Indeed, I just tried it myself and got:

**** Retrieving: file.html ****
An unhandled exception occurred at $000000000047DF55:
EFOpenError: Unable to open file "file.html"
  $000000000047DF55
  $000000000047DD54
  $000000000045E9E2

I'll investigate shortly

from xidel.

Freezystem avatar Freezystem commented on September 26, 2024

Don't know yet if it's related but reading from stdin does not work either:
cat file.html | docker run --rm -it freezystem/xidel - -e "//title"

the input device is not a TTY

Tried both commands within the docker container and it works so it must be a docker related issue.
I'll investigate in this way first.

from xidel.

Freezystem avatar Freezystem commented on September 26, 2024

Ok, so the syntax was wrong.
To read a file from within a docker container you have to mount the folder containing the file in the container.

You can workaround this problem by mounting the current folder as a volume like this:
docker run --rm -it -v `pwd`:/tmp freezystem/xidel /tmp/file.html -e "//title"

Here we mount our current working directory to the docker /tmp folder.
Be careful to specify the correct path that leads to the file within the docker container (here it's /tmp/file.html).

You can also use the stdin syntax if you prefer:
cat file.html | docker run --rm -i freezystem/xidel - -e "//title"

You just have to omit the -t (--tty) option to make it work.

from xidel.

Freezystem avatar Freezystem commented on September 26, 2024

@esmmusavi feel free to reopen this issue or ask if you have any question.
Hope it solves your problem.

from xidel.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.