Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6350093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:44:53+00:00 2026-05-24T21:44:53+00:00

I use ZSH for my terminal shell, and whilst I’ve written several functions to

  • 0

I use ZSH for my terminal shell, and whilst I’ve written several functions to automate specific tasks, I’ve never really attempted anything that requires the functionality I’m after at the moment.

I’ve recently re-written a blog using Jekyll and I want to automate the production of blog posts and finally the uploading of the newly produced files to my server using something like scp.

I’m slightly confused about the variable bindings/usage in ZSH; for example:

DATE= date +'20%y-%m-%d'
echo $DATE

correctly outputs 2011-08-23 as I’d expect.

But when I try:

DATE= date +'20%y-%m-%d'
FILE= "~/path/to/_posts/$DATE-$1.markdown"
echo $FILE

It outputs:

2011-08-23
blog.sh: line 4: ~/path/to/_posts/-.markdown: No such file or directory

And when run with what I’d be wanting the blog title to be (ignoring the fact the string needs to be manipulated to make it more url friendly and that the route path/to doesn’t exist)

i.e. blog “blog title”, outputs:

2011-08-23
blog.sh: line 4: ~/path/to/_posts/-blog title.markdown: No such file or directory

Why is $DATE printing above the call to print $FILE rather than the string being included in $FILE?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T21:44:53+00:00Added an answer on May 24, 2026 at 9:44 pm

    Two things are going wrong here.


    Firstly, your first snippet is not doing what I think you think it is. Try removing the second line, the echo. It still prints the date, right? Because this:

    DATE= date +'20%y-%m-%d'
    

    Is not a variable assignment – it’s an invocation of date with an auxiliary environment variable (the general syntax is VAR_NAME=VAR_VALUE COMMAND). You mean this:

    DATE=$(date +'20%y-%m-%d')
    

    Your second snippet will still fail, but differently. Again, you’re using the invoke-with-environment syntax instead of assignment. You mean:

    # note the lack of a space after the equals sign
    FILE="~/path/to/_posts/$DATE-$1.markdown"
    

    I think that should do the trick.


    Disclaimer

    While I know bash very well, I only started using zsh recently; there may be zshisms at work here that I’m not aware of.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently started to use Zsh as my default shell. One thing that I
I use rvm to manage different rubies and their gemsets. My shell is zsh
I've written a function in zsh to find and replace a specific number with
I am currently learning the zsh and now I wanted to use strftime but
I have a Bash tab-completion script for Apache's Hadoop. Normally, I use zsh as
I want to use the zsh-git-prompt, from this repo https://github.com/olivierverdier/zsh-git-prompt , I've been using
If there is any possibility to use the parameters in zsh aliases? Something like
I just discovered the possibility to use vi-mode in zsh. Pretty awesome. But I
I'm trying to use the oh-my-zsh git-flow plugin and getting the following error. ➜
I want to use a feature only present in newer versions of zsh: [[

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.