[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: how to use not "also" symbolic link time, but "only"
From: |
Michael Ludwig |
Subject: |
Re: how to use not "also" symbolic link time, but "only" |
Date: |
Sat, 14 Apr 2012 11:51:17 +0200 |
User-agent: |
Mutt/1.5.21+52 (c26dbc7021f4) (2011-07-01) |
Bryan Ischo schrieb am 13.04.2012 um 10:05 (-0700):
> In my particular case, I have rules for creating directories
> on-demand, and those rules were difficult to work in a way that
> didn't sometimes 'mkdir' a directory that already existed.
Not a problem using mkdir -p :
$ mkdir -p a/b/c
$ mkdir -p a/b/c
$ mkdir -p a/b/c
On Windows:
$ if not exist a\b\c md a\b\c
$ if not exist a\b\c md a\b\c
$ if not exist a\b\c md a\b\c
> It was easier to just send the mkdir output to null and never worry
> about it.
Maybe less clean, but effectively the same thing.
--
Michael Ludwig
- how to use not "also" symbolic link time, but "only", Mark Galeck (CW), 2012/04/13
- Re: how to use not "also" symbolic link time, but "only", Paul Smith, 2012/04/13
- RE: how to use not "also" symbolic link time, but "only", Mark Galeck (CW), 2012/04/13
- RE: how to use not "also" symbolic link time, but "only", Mark Galeck (CW), 2012/04/13
- Re: how to use not "also" symbolic link time, but "only", Bryan Ischo, 2012/04/13
- RE: how to use not "also" symbolic link time, but "only", Mark Galeck (CW), 2012/04/13
- Re: how to use not "also" symbolic link time, but "only",
Michael Ludwig <=