diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-25 15:13:50 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-25 15:13:50 +0100 |
commit | 8aa614c8432ff3061312b34df1729ab1cc3e3c8b (patch) | |
tree | 9b21e039631fea47bfc668b196ef393c6710051d /etc/functions | |
parent | 0c2e58f14bd2cd0faa4e2aeeafa993f7f4baf462 (diff) |
Fixed typo in mkcd
Diffstat (limited to 'etc/functions')
-rwxr-xr-x | etc/functions/mkcd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/functions/mkcd b/etc/functions/mkcd index 4d62298..c4a8c5d 100755 --- a/etc/functions/mkcd +++ b/etc/functions/mkcd @@ -8,7 +8,7 @@ if [[ -z $dir ]] { return 1 } [[ -d $dir ]] && ls=1 -mkdir -p $din +mkdir -p $dir cd $dir ((ls)) && ls true |