Post AIRrQSd22dh2PN8aDw by satoshi@fedi.absturztau.be
 (DIR) More posts by satoshi@fedi.absturztau.be
 (DIR) Post #AIRrQSd22dh2PN8aDw by satoshi@fedi.absturztau.be
       2022-04-14T18:36:25.773682Z
       
       0 likes, 0 repeats
       
       Command to move stuff around on Windows:>moveCommand to move stuff around on Linux:>rename
       
 (DIR) Post #AISRcmef0UIoLM4gLY by Suiseiseki@desuposter.club
       2022-04-15T01:22:00.611295Z
       
       1 likes, 0 repeats
       
       @satoshi Yes, but why are you comparing a command in an (albeit crappy) shell on an OS, with a kernel?On Linux, there's a sys_renameat{2} SYSCALL and not a sys_move SYSCALL, as moving files is ideally just renaming the path/filename field in the filesystem.The command to move stuff around on GNU/Linux is; `mv <src>... <dest>`, so shorter than the windows command.