Code Monkey home page Code Monkey logo

Comments (4)

malxau avatar malxau commented on July 26, 2024 1

yd=youtube-dl
ydf=yd --format

That should be fine.

alias w = pushd c:\wp & wp & popd

This will not currently work in Yori. "w" expands to a single command, not a compound expression.

If you rename the WINWORD.EXE program or move it to a new directory, only the first alias needs to be changed.

This is different between the two. In Yori the second alias is expanded at the time it is defined, so changing the first will do nothing. Doing this means the shell doesn't need to recursively attempt to resolve the alias, or handle loops in resolution, etc.

The aliases below report "unrecognized command"
ydf="yd --format" $1$
ydf ="yd --format $1$"

This is occurring because of the quotes. It's expanding this into a single command, so is looking for a file called "yd --format.exe" or similar. If you omit the quotes, this should work fine.

from yori.

malxau avatar malxau commented on July 26, 2024 1

It's not saving '--format'

c:>alias yd=youtube-dl
c:>alias ydf=yd --format
c:>alias
yd=youtube-dl
ydf=youtube-dl

I'm sorry, I misunderstood. In this case "yd" is defined as "youtube-dl" without specifying what to do with any arguments, so it's discarding them all. I think you want:

c:>alias yd=youtube-dl $*$
c:>alias ydf=youtube-dl --format $*$
c:>alias
yd=youtube-dl $*$
ydf=youtube-dl --format $*$

from yori.

Skibicki avatar Skibicki commented on July 26, 2024

I don't know command line basics so this may look strange.

yd=youtube-dl
ydf=yd --format

That should be fine.

It's not saving '--format'

c:>alias yd=youtube-dl
c:>alias ydf=yd --format
c:>alias
yd=youtube-dl
ydf=youtube-dl

c:>alias ydf=yd --format $1$
c:>alias
yd=youtube-dl
ydf=youtube-dl

c:>alias ydf=yd --format $1$ $2$
c:>alias
yd=youtube-dl
ydf=youtube-dl

It fails with combined aliases but works with complete commands.

ydf=youtube-dl --format $1$ $2$

c:>ydf 22 https://youtube.com/watch?v=ObgqvKJR1r8
[youtube] ObgqvKJR1r8: Downloading webpage

from yori.

Skibicki avatar Skibicki commented on July 26, 2024

Thank you.
Those aliases worked without any problems.

from yori.

Related Issues (20)

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.