これは私が書いた関数で、zsh、bash、または ksh で動作します。
注: デバッグが有効になっています (コマンドを実行するのではなく、実行するコマンドをエコーします)。その行をコメントアウトすると、実際に実行されます。
注意:十分にテストされていません。
cpmd
これを使用するには、このスクリプトをinという名前のファイル/usr/local/bin
(またはパスの別の場所) に配置します。これを有効にするには、シェル プロンプトから次のコマンドを入力します (または、起動スクリプトに追加します。bash の場合は、次のようになります~/.bashrc
)。
source cpmd
次に、次のようなコマンドを使用してファイルをコピーできます。
cpmd carparts /home/dave/Documents/nonexistent/newdir/
ディレクトリ「存在しない」または「新しいディレクトリ」はまだ存在しません。両方のディレクトリが作成され、「carparts」という名前のファイルが「newdir」にコピーされます。
末尾にスラッシュ ("/") を含めない場合、最後の部分はファイル名として扱われ、それより前に存在しないディレクトリが作成されます。
cpmd supplies /home/dave/Documents/anothernew/consumables
ディレクトリ「anothernew」が作成され、「supplies」が新しいファイル名「consumables」でコピーされます。
宛先のすべてのディレクトリがすでに存在する場合はcpmd
、通常のcp
コマンドのように機能します。
function cpmd {
# copies files and makes intermediate dest. directories if they don't exist
# for bash, ksh or zsh
# by Dennis Williamson - 2009-06-14
# http://stackoverflow.com/questions/993266/unable-to-make-nosuchdirectory-message-useful-in-zsh
# WARNING: no validation is performed on $1 and $2
# all cp commands below are hardcoded with -i (interactive) to prevent overwriting
if [[ -n $KSH_VERSION ]]
then
alias local=typeset
local func="$0"
local lastchar="${2: -1}"
readcmd () { read "$2?$1"; }
elif [[ -n $ZSH_VERSION ]]
then
local func="$0"
# the following two lines are split up instead of doing "${2[-1]}"
# to keep ksh from complaining when the function is loaded
local dest="$2"
local lastchar="${dest[-1]}"
readcmd () { read "$2?$1"; }
elif [[ -n $BASH_VERSION ]]
then
local func="$FUNCNAME"
local lastchar="${2:(-1)}"
readcmd () { read -p "$1" $2; }
else
echo "cpmd has only been tested in bash, ksh and zsh." >&2
return 1
fi
local DEBUG='echo' # COMMENT THIS OUT to make this function actually work
if [[ ${#@} != 2 ]]
then
echo "$func: invalid number of parameters
Usage:
$func source destination
where 'destination' can include nonexistent directories (which will
be created). You must end 'destination' with a / in order for it to
specify only directories. Without the final slash, the 'source' will
be copied with a new name (the last portion of 'destination'). If you
are copying multiple files and 'destination' is not a directory, the
copy will fail." >&2
return 1
fi
local dir=$(dirname "$2")
local response
local nl=$'\n'
# destination ($2) is presumed to be in one of the following formats:
# .../existdir test 1 (-d "$2")
# .../existdir/existfile test 2 (-f "$2")
# .../existdir/newfile test 3 (-d "$dir" && $lastchar != '/')
# .../existdir/newdir/ (else)
# .../newdir/newdir/ (else)
# .../newdir/newfile (else)
if [[ -d "$2" || -f "$2" || (-d "$dir" && $lastchar != '/') ]]
then
$DEBUG cp -i "$1" "$2"
else
if [[ $lastchar == '/' ]]
then
dir="$2"
fi
local prompt="$func: The destination directory...${nl} ${dir}${nl}...does not exist. Create? (y/n): "
while [[ -z $response ]]
do
readcmd "$prompt" response
case $response in
y|Y) response="Y" ;;
n|N) ;;
*) response=
prompt="$func: Invalid response.${nl} Create destination directory? (y/n): ";;
esac
done
if [[ $response == "Y" ]]
then
$DEBUG mkdir -p "$dir" && $DEBUG cp -i "$1" "$2"
else
echo "$func: Cancelled." >&2
fi
fi
}