jabba-cpc 0.1.2

Copies the path of the current working dir. to the clipboard. If a parameter is given, it's also added to the path.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
cat:
	cat Makefile

# Run tests in single thread mode! Several tests modify the clipboard
# and if they run parallely, they get mixed up.
test:
	cargo test -- --test-threads=1

release:
	cargo build --release
	/bin/rm -f ./cpc
	/bin/mv ./target/release/cpc ./cpc
	upx --best --lzma cpc

clean:
	cargo clean
	/bin/rm -f ./cpc