Skip to content

Commit 2f6078e

Browse files
author
Ivan Stoev
committed
Some minor fixes.
1 parent 8cbe771 commit 2f6078e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,22 @@ This is a simple linux console client for pCloud cloud storage.
1111
Also requires
1212
[CMake](https://cmake.org/) build system.
1313

14-
On ubuntu you can run the following command:
14+
On Ubuntu you can run the following command:
1515
> sudo apt-get install cmake zlib1g-dev libboost-system-dev libboost-program-options-dev libpthread-stubs0-dev libfuse-dev
1616
1717
## Usage
1818
./pcl_client -h
1919
pCloud console client v.2.0.1
2020
Allowed options:
21-
- -h [ --help ] produce help message
21+
- -h [ --help ] produce help message
2222
- -u [ --username ] arg pCloud account name
2323
- -p [ --password ] arg pCloud account password
2424
- -c [ --crypto ] arg Crypto password
2525
- -s [ --passascrypto ] arg Use user password as crypto password also.
2626
- -d [ --damonize ] Daemonize the process.
27-
- -o [ --commands ] Parent stays alive and processes command after
28-
- daemoziation.
27+
- -o [ --commands ] Parent stays alive and processes command after daemoziation.
2928
- -m [ --mountpoint ] arg Mount point where drive to be mounted.
30-
- -k [ --commands_only ] Demon already started pass only commands
29+
- -k [ --commands_only ] Daemon already started pass only commands
3130

3231
If you whant to be able to mount the files system as non root user you will have to create file
3332
/etc/fuse.conf

pCloudCC/control_tools.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ int finalize(){
5858
void process_commands()
5959
{
6060
std::cout<< "Supported commands are:" << std::endl << "startcrypto <crypto pass>, stopcrypto, finalize, q, quit" << std::endl;
61-
std::cout<< ">" ;
61+
std::cout<< "> " ;
6262
for (std::string line; std::getline(std::cin, line);) {
6363
if (!line.compare("finalize")) {
6464
finalize();
@@ -70,7 +70,7 @@ void process_commands()
7070
else if (!line.compare("q") || !line.compare("quit"))
7171
break;
7272

73-
std::cout<< ">" ;
73+
std::cout<< "> " ;
7474
}
7575
}
7676

0 commit comments

Comments
 (0)