Skip to content

C++ command-line tools for copying and pasting files via the Windows clipboard.

License

Notifications You must be signed in to change notification settings

trypsynth/cmd_clip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cmd_clip

This is a set of Windows utilities for working with files on the clipboard in a format that Windows Explorer and similar programs can understand:

  • fcopy: Copies files to the clipboard, similar to selecting them in Windows Explorer and pressing Ctrl+C.
  • `fcut: Moves files to the clipboard, similar to Ctrl+X in Windows Explorer.
  • fpaste: Pastes files from the clipboard into the current directory.
  • fclear: Clears the clipboard of any copied or cut files.
  • flist: Lists files currently stored on the clipboard.

Building

To build with CMake, follow these steps:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release

Usage

fcopy – Copy files to the clipboard

fcopy <file1> [file2 ...]

fcut – Cut (move) files to the clipboard

fcut <file1> [file2 ...]

fpaste – Paste files from the clipboard

fpaste

fclear – Clear the clipboard

fclear

flist – List files currently on the clipboard

flist [-i]

-i will display much more detailed information about the files on your clipboard.

About

C++ command-line tools for copying and pasting files via the Windows clipboard.

Resources

License

Stars

Watchers

Forks