Skip to content

Instantly share code, notes, and snippets.

@cherenkov
Created November 9, 2012 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cherenkov/4045645 to your computer and use it in GitHub Desktop.
Save cherenkov/4045645 to your computer and use it in GitHub Desktop.
xargsの限界?
echo . | xargs xdg-open
→正しく開かれる
ところが、
.zshrcに
function xdg_open_background() {
xdg-open $* &
}
alias o=xdg_open_background
と書いて、
echo . | xargs o
→xargs: o: そのようなファイルやディレクトリはありません
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment