Following a command line to create a file with 10Mb. $ base64 /dev/urandom | head -c 10000000 > file.txt
Category: CommandLine
[Git] – How to remove the remote and local branch by commands line?
The following is the command to remove the remote branch $ git push origin –delete <branch_name> The following is the … More
CommandLine : How to copy a file from a server using a public key ?
The command to copy files from others server is : scp user@server:/filepath/filename If you need connect with your public key … More
CommandLine : How to generate a public key with my mac ?
For do this you need use the command : ssh-keygen Example: Observation: all keys are in ~/.ssh directory.