こんにちは、すべてのファイル.hi
と.o
拡張子を持つファイルをターゲットフォルダー/src
から別のフォルダーに移動しようとしています/Obj
これまでのところ、私は試しました:
srcpath=$(pwd)"/src"
ghc src/Main.hs > Logs/output.txt 2> Logs/Err.txt //this builds the project and generates the binaries and .hi files
mv *.hi *.o $srcpath/src/ Obj/ //i want to move all these files to Obj/ folder but where do i place the extension arguments?
コマンドはどのようにすべきですmv extensions source dest ?
か:またはmv source dest extensions
私が試してみました:
srcpath=$(pwd)"/src"
objpath=$(pwd)"/Obj"
ghc src/Company.hs > Logs/output.txt 2> Logs/Err.txt
mv *.o *.hi $srcpath $objpath
そして、私は次のエラーを受け取ります:
mv: cannot stat '*.o': No such file or directory
mv: cannot stat '*.hi': No such file or directory
mv: cannot move '/c/Users/[..]/src' to '/c/Users/[...]/Obj/src': Device or resource busy
extension0 $srcpath.....extensionN $srcpath
する方法はありません[extension0...extensionN] $srcpath