Compare commits

...

2 commits

View file

@ -170,6 +170,12 @@ swp () {
mv "$1.$tmp_suffix" $2 mv "$1.$tmp_suffix" $2
} }
# Move all files from a source directory to a target directory
mvf () {
find "$1" -maxdepth 1 -type f -exec mv {} "$2" \;
ll $1
}
# +-----+ # +-----+
# | Git | # | Git |
# +-----+ # +-----+