Linked Questions

0 votes
0 answers
565 views

when I call env to see the environment variables it shows nicely with new lines: $ env SHELL=/bin/sh EDITOR=vi PWD=/home/user ... but when I want to store this to a file the new lines get ...
DEKKER's user avatar
  • 998
0 votes
0 answers
534 views

I am currently on Pop!OS 20.04, and after installing zsh and setting it as my default shell, when installing apps by using apt-get like follows, zsh says no matches found: sudo apt-get install ...
Lam Bui Bao's user avatar
0 votes
0 answers
522 views

The destination directory is a directory with spaces in the name: /opt/config/Sn Lk Now I wrote a script which moves a file from my directory to this directory, but the move fails Although the echo of ...
user avatar
0 votes
0 answers
726 views

line="touch : touch : test.txt" IFS=':' read scr cmd <<< "$line" echo $scr echo $cmd output: touch touch : test.txt line="touch : touch : test.txt" IFS=':' ...
BobBarkerMD_atLaw's user avatar
1 vote
2 answers
245 views

I encountered a very strange behavior when running below command, let me explain the issue: Consider this simple bash script: #!/bin/bash zip -r /var/backup.zip /var/www -x /ignore_dir_1/\* It ...
nima1024's user avatar
0 votes
0 answers
413 views

this is the console output of Jenkins' build. Here, you could see that the file Oct Release SQL.txt is present in the path but when I am deleting it by using rm Oct Release SQL.txt, it is not able to ...
Harshita Singh's user avatar
0 votes
1 answer
370 views

Sample script to copy /tmp/template.txt file to any directory as specified in $1. copy_script.sh if [ $# -eq 0 ]; then echo No Argument echo "Usage: $0 <path>" else cp /tmp/...
Wolf's user avatar
  • 1,751
0 votes
1 answer
490 views

So I have a shell script math.sh which takes a number as an argument and echos one added to it and one subtracted from it: #!/bin/bash echo "Add: "$(($1 + 1)) echo "Subtract : "$((...
no_bashell's user avatar
1 vote
1 answer
99 views

I have the following bash function : tg() { git add -A && git commit -m $1 && git push } But it seems not to work : $ tg "create index for users" error: pathspec 'index' did not ...
Ewan Delanoy's user avatar
0 votes
1 answer
177 views

part of my code is as below : output=$(cat databaselog | awk '{print $9,$1,$2,$6}' ) echo $output >> savedfile Output will be something like this , saved in a new file called savedfile name1 ...
Wenhan Xiao's user avatar
0 votes
1 answer
158 views

Instead of typing in the content of a public key I want to pass the content of it as an input. The command used is ipa user-mod user --sshpubkey='ssh-rsa AAA ........' This work. When I do ipa user-...
BPHusted's user avatar
-5 votes
1 answer
139 views

What does the following from https://unix.stackexchange.com/a/154290/674 mean? In general, in shells other than zsh, $PATH outside double quotes breaks when the value contains spaces or other ...
Tim's user avatar
  • 107k
0 votes
0 answers
120 views

I am working on a script to parse a file containing a list of IP addresses and ports then do a bunch of test on the ports with netcat. The port argument can be a single port, a list of ports, or a ...
math's user avatar
  • 119
0 votes
0 answers
95 views

I am writing a small script to symbolically link configuration files from my dotfiles directory to another one. I do not have control over the file names and unfortunately one of them is causing me a ...
CL40's user avatar
  • 111
0 votes
0 answers
73 views

I have a file named "test.log" with contents: 2 root 20 0 0 0 0 S 0.0 0.0 0:00.01 [kthreadd] Then I use while-read command to process it: cat test.log |...
傅继晗's user avatar
  • 101

15 30 50 per page
1
2
3 4 5
23