userspace: Implement mv utility

This commit is contained in:
2025-11-23 02:12:46 +02:00
parent 4ec8f4a4bf
commit e3e2e7b4df
3 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
set(SOURCES
main.cpp
)
add_executable(mv ${SOURCES})
banan_link_library(mv libc)
install(TARGETS mv OPTIONAL)