About 192,000 results
Open links in new tab
  1. How to create a file in Linux from terminal window? [closed]

    How to create a text file on Linux: Using touch to create a text file: $ touch NewFile.txt Using cat to create a new file: $ cat NewFile.txt The file is created, but it's empty and still waiting for the …

  2. makefile - how to "execute" make file - Stack Overflow

    You don't tend to execute the make file itself, rather you execute make, giving it the make file as an argument: make -f pax.mk If your make file is actually one of the standard names (like …

  3. How do I make a simple makefile for gcc on Linux? - Stack Overflow

    Sep 28, 2009 · It uses the wildcard and patsubst features of the make utility to automatically include .c and .h files in the current directory, meaning when you add new code files to your …

  4. c++ - Create linux make/build file - Stack Overflow

    Aug 26, 2010 · I am moving a C++ project from Windows to Linux and I now need to create a build/make file. I have never created a build/make file before. I also need to include Boost …

  5. How do I make a zip file on linux? - Stack Overflow

    Jun 26, 2014 · 9 I think this is gonna help you zip -r new_zip_file directory_name Where "new_zip_file" is the name of the .zip file you want to create and "directory_name" is the folder …

  6. linux - What are makefiles, 'make install', etc.? - Stack Overflow

    I see the following things in Linux, but what are they? ./configure make make install etc etc.

  7. c - how to create a makefile linux - Stack Overflow

    Apr 9, 2014 · gcc code.c -o code file.o -library How to create a makefile? I currently have with autoconf and automake? I currently have:

  8. What do I use on linux to make a python program executable

    I just installed a linux system (Kubuntu) and was wondering if there is a program to make python programs executable for linux.

  9. How to write a Makefile to compile a simple C program

    Feb 4, 2014 · A makefile is a recipe for the make utility how to create some file (called a target) from some other files (called dependencies) using a set of commands run by the shell.

  10. Quickly create a large file on a Linux system - Stack Overflow

    Nov 3, 2008 · How can I quickly create a large file on a Linux (Red Hat Linux) system? dd will do the job, but reading from /dev/zero and writing to the drive can take a long time when you need …