About 50 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 input from …

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

    Sep 28, 2009 · Here's the Makefile I like to use for C source. Feel free to use it: ... It uses the wildcard and patsubst features of the make utility to automatically include .c and .h files in the current …

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

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

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

    Apr 9, 2014 · If on the computer the -library doesn t exist I want to install it automatically. This is specific to the distribution used and you need root access on the machine. Doing it like this is not how it's …

  5. 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 makefile or …

  6. How can I symlink a file in Linux? - Stack Overflow

    Nov 7, 2016 · I want to create a symbolic link in Linux. I have written this Bash command where the first path is the folder I want to link, and the second path is the compiled source. ln -s '+basebuild+'/IpDome-

  7. 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 a file several

  8. One command to create a directory and file inside it linux command

    Aug 1, 2013 · Suppose my current directory is A. I want to create a directory B and a file "myfile.txt" inside B. How to do that in one command from Terminal? Edit: Directory can be nested multiple …

  9. How can I install and use "make" in Windows? - Stack Overflow

    I want to use the make command as part of setting up the code environment, but I'm using Windows. I searched online, but I could only find a make.exe file, a make-4.1.tar.gz file (I don't know what to do …

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

    Jun 26, 2014 · Typically one uses tar to create an uncompressed archive and either gzip or bzip2 to compress that archive. The corresponding gunzip and bunzip2 commands can be used to …