diff --git a/README b/README index c9cd307..fd780ab 100644 --- a/README +++ b/README @@ -186,8 +186,8 @@ allows the user to set up an encrypted connection for managing file systems. To compile wolfSSH with SFTP support, use the `--enable-sftp` build option or define `WOLFSSH_SFTP`: -$ ./configure --enable-sftp -$ make + $ ./configure --enable-sftp + $ make For full API usage and implementation details, please see the wolfSSH User Manual. @@ -195,31 +195,28 @@ Manual. The SFTP client created is located in the directory examples/sftpclient/ and the server is ran using the same echoserver as with wolfSSH. -src/wolfssh$ ./examples/sftpclient/wolfsftp + src/wolfssh$ ./examples/sftpclient/wolfsftp A full list of supported commands can be seen with typeing "help" after a connection. -``` -wolfSSH sftp> help + wolfSSH sftp> help - -Commands : -cd change directory -chmod change mode -get pulls file(s) from server -ls list current directory -mkdir creates new directory on server -put push file(s) to server -pwd list current path -quit exit -rename renames remote file -reget resume pulling file -reput resume pushing file - interrupt get/put cmd -``` + Commands : + cd change directory + chmod change mode + get pulls file(s) from server + ls list current directory + mkdir creates new directory on server + put push file(s) to server + pwd list current path + quit exit + rename renames remote file + reget resume pulling file + reput resume pushing file + interrupt get/put cmd An example of connecting to another system would be -src/wolfssh$ ./examples/sftpclient/wolfsftp -p 22 -u user -h 192.168.1.111 + src/wolfssh$ ./examples/sftpclient/wolfsftp -p 22 -u user -h 192.168.1.111 diff --git a/README.md b/README.md index 910153b..fd780ab 100644 --- a/README.md +++ b/README.md @@ -201,24 +201,21 @@ A full list of supported commands can be seen with typeing "help" after a connection. -``` -wolfSSH sftp> help + wolfSSH sftp> help - -Commands : -cd change directory -chmod change mode -get pulls file(s) from server -ls list current directory -mkdir creates new directory on server -put push file(s) to server -pwd list current path -quit exit -rename renames remote file -reget resume pulling file -reput resume pushing file - interrupt get/put cmd -``` + Commands : + cd change directory + chmod change mode + get pulls file(s) from server + ls list current directory + mkdir creates new directory on server + put push file(s) to server + pwd list current path + quit exit + rename renames remote file + reget resume pulling file + reput resume pushing file + interrupt get/put cmd An example of connecting to another system would be diff --git a/configure.ac b/configure.ac index 156e0f7..337cf99 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ AC_CONFIG_AUX_DIR([build-aux]) : ${CFLAGS=""} # Test ar for the "U" option. Should be checked before the libtool macros. -xxx_ar_flags=$((ar --help) 2>&1) +xxx_ar_flags=$(ar --help 2>&1) AS_CASE([$xxx_ar_flags],[*'use actual timestamps and uids/gids'*],[: ${AR_FLAGS="Ucru"}]) AC_CANONICAL_HOST @@ -20,7 +20,7 @@ AC_ARG_PROGRAM AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([src/config.h]) -WOLFSSH_LIBRARY_VERSION=6:0:1 +WOLFSSH_LIBRARY_VERSION=7:0:2 # | | | # +------+ | +---+ # | | |