this post was submitted on 03 May 2024
28 points (86.8% liked)

Linux

45457 readers
1401 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I am tired of creating a file with nano, saving it and then making it executable. Is there a command that makes it in one step?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 2 months ago (2 children)

Use && to use multiple commands one after the other, don't use ;.

[–] [email protected] 18 points 2 months ago (1 children)

- && means execute if the command before ended successfully

- || means execute if the commnad before failed

- ; just means execute the command - no matter if succeeded or failed

[–] [email protected] 1 points 1 month ago

My dude, thanks for this. I've been using && for a long time now but never knew the rest, I'm still pretty new to linux comparatively.