مدیریت سرورها

آموزش مدیریت سرورهای لینوکس و ویندوز

مدیریت سرورها

آموزش مدیریت سرورهای لینوکس و ویندوز

سایت در باره انواع آموزشها در زمینه IT می باشد.
مانند: لینوکس، ویندوز، سیسکو، میکروتیک، طراحی وب
به دلیل شخصی بودن وبلاگ ارائه مطالب متفرقه در آن بلامانع است.
با تشکر

طبقه بندی موضوعی

۳ مطلب با کلمه‌ی کلیدی «vim» ثبت شده است

۱۰
تیر

First start by creating the template file called sh_header.temp, which contains your custom bash script header, possibly under ~/.vim/ directory under your home.

$ vi ~/.vim/sh_header.temp

Next add the following lines in it (feel free to set your own template file location and custom header) and save the file.

Custom Header Template for Scripts
#!/bin/bash 

###################################################################
#Script Name	:                                                                                              
#Description	:                                                                                 
#Args           	:                                                                                           
#Author       	:Aaron Kili Kisinga                                                
#Email         	:aaronkilik@gmail.com                                           
###################################################################

Create Custom Header Template for Scripts

Create Custom Header Template for Scripts

  • طاهر ضیائی
۲۳
شهریور

Open N windows stacked.

vim -o file1 file2 [file...]


Open N windows side by side.

vim -O file1 file2 [file...]


How does one switch between windows on VIM?

Ctrl + Shift + w

  • طاهر ضیائی
۱۷
شهریور

  1. Use Ctrl+Shift+v to select the first column of text in the lines you want to comment.
  2. Then hit Shift+i and type the text you want to insert.
  3. Then hit Esc, wait 1 second and the inserted text will appear on every line.
  • طاهر ضیائی