In Feburary 2016 29,
Click 'Start.'
Type 'cmd' into the search box.
Press 'Enter' to open the command prompt.
Type 'ftp example.com xx' into the Command Prompt, with 'xx' being the port that you need to specify.
Press 'Enter' to connect to the remote server.
In Feburary 2016 29,
Showing posts with label cmd. Show all posts
Showing posts with label cmd. Show all posts
Monday, 29 February 2016
Sunday, 28 February 2016
How to Add a Newline Character to the End of a Line in SedIn Feburary 2016 28,
In Feburary 2016 28,
Open a terminal. The procedure to do this will depend on your operating system. Most Unix and Linux systems either open a terminal immediately on start up or have a terminal icon somewhere on the desktop. In Mac OS X, click the 'Spotlight' button and type 'Terminal.' In Windows, click 'Start,' 'Run' and type 'cmd.'
Type the following :sed '/$/G'This tells sed to search the text for all end of lines ($) and add a new line (G), effectively double-spacing the file. Alternatively, if you want to insure that there is never more than one blank line between paragraphs, change the command to read:sed '/^$/d;G' This tells sed to match only completely blank lines (^$), delete those blank lines (d) and replace them with a single new line (G).
Feed the data from a text file into sed by typing the following:cat textfile.txt | sed '/^$/d;G'
In Feburary 2016 28,
Open a terminal. The procedure to do this will depend on your operating system. Most Unix and Linux systems either open a terminal immediately on start up or have a terminal icon somewhere on the desktop. In Mac OS X, click the 'Spotlight' button and type 'Terminal.' In Windows, click 'Start,' 'Run' and type 'cmd.'
Type the following :sed '/$/G'This tells sed to search the text for all end of lines ($) and add a new line (G), effectively double-spacing the file. Alternatively, if you want to insure that there is never more than one blank line between paragraphs, change the command to read:sed '/^$/d;G' This tells sed to match only completely blank lines (^$), delete those blank lines (d) and replace them with a single new line (G).
Feed the data from a text file into sed by typing the following:cat textfile.txt | sed '/^$/d;G'
In Feburary 2016 28,
Wednesday, 17 February 2016
How to FTP Via Command LineIn Feburary 2016 17,
In Feburary 2016 17,
Click on the 'Start' button. Type 'Run' in the 'Search programs and files' text dialog. Click on the 'Run' icon that displays in the search results.
Type 'cmd' in the 'Run' dialog box and click 'OK.'
Type 'ftp yourdomain.com' in the command line when the Windows Command Prompt opens. Replace 'yourdomain.com' with the name of your domain.
Press 'Enter' on your keyboard and type your FTP username and password when prompted. The username will appear as you type it, but the password will not.
In Feburary 2016 17,
Click on the 'Start' button. Type 'Run' in the 'Search programs and files' text dialog. Click on the 'Run' icon that displays in the search results.
Type 'cmd' in the 'Run' dialog box and click 'OK.'
Type 'ftp yourdomain.com' in the command line when the Windows Command Prompt opens. Replace 'yourdomain.com' with the name of your domain.
Press 'Enter' on your keyboard and type your FTP username and password when prompted. The username will appear as you type it, but the password will not.
In Feburary 2016 17,
Subscribe to:
Posts (Atom)