Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to make numbered directories in linux

# directories from s1 to s50
for i in {1..50}; do
  mkdir s"$i"
done
# or
mkdir s{1..50}
#or
mkdir $(printf "s%02i " $(seq 1 50))
Comment

PREVIOUS NEXT
Code Example
Shell :: how install gradel 
Shell :: log by date 
Shell :: windows key not raising window in ubuntu 
Shell :: fix kali linux asking to restart services 
Shell :: HEREDOC script into var 
Shell :: heredoc remove leading space linux bash 
Shell :: calculefactorail en bash 
Shell :: git ignoring vendor folder inside public also 
Shell :: pip_install_packages.bat 
Shell :: remove detached disk from raid array linux 
Shell :: command line filters 
Shell :: yaml run inside folder command 
Shell :: Install lunacy on linux snap ubuntu 
Shell :: detach other user from monitor linux command 
Shell :: ipmitool debug 
Shell :: ubuntu disable mouse click on release 
Shell :: commit our changes and merge them back into our dev branch. 
Shell :: mkdir NewDirectory and cd into it 
Shell :: deleting compizconfig 
Shell :: openssl rand -hex 32 windows 
Shell :: Auto-open DevTools on every new tab For bash on Linux 
Shell :: install git on windows 
Shell :: git show hidden commits 
Shell :: fix merge conflict in package-lock.json 
Shell :: bitbucket Permission denied (publickey). fatal: Could not read from remote repository. 
Shell :: for in shell script 
Shell :: Errors were encountered while processing: ubuntu 
Shell :: install npm packages on shared hosting 
Shell :: makepkg resolve auto dependencies 
Shell :: scp 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =