]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
bin/mv-p: Rewrap for better readability.
authorSimon Ruderich <simon@ruderich.org>
Sat, 9 Feb 2013 20:07:34 +0000 (21:07 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 9 Feb 2013 20:52:28 +0000 (21:52 +0100)
bin/mv-p

index 2faade8bc3e70754903c32c9f35686dd74f8286a..f9620871fc92b1e06b0355c41ff20fe7b08fa069 100755 (executable)
--- a/bin/mv-p
+++ b/bin/mv-p
@@ -3,7 +3,7 @@
 # Wrapper command for `mv` which creates the target directory before moving
 # the file there.
 
-# Copyright (C) 2011-2012  Simon Ruderich
+# Copyright (C) 2011-2013  Simon Ruderich
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -20,7 +20,9 @@
 
 
 # Get last argument.
-for last; do :; done
+for last; do
+    :
+done
 
 mkdir -p "`dirname "$last"`" \
     && mv "$@"