Search Results

Search: Posts Made By: Iced_R
2,746
Posted By Iced_R
You can use sudo, or you can give only execution...
You can use sudo, or you can give only execution flags to the archive for other users.
4,487
Posted By Iced_R
Wow, I didn't knew that. Thanks!
Wow, I didn't knew that. Thanks!
4,487
Posted By Iced_R
#!/bin/bash ls -ltr folder1 >...
#!/bin/bash
ls -ltr folder1 > list-of-files-1.txt
ls -ltr folder2 > list-of-files-2.txt
i=1
while read line; do
if [ "cat list-of-files-1.txt | head -$i | tail -1" = "$line" ]; then
...
1,637
Posted By Iced_R
You can edit the same file with a single command...
You can edit the same file with a single command of sed:

sed -i 's/20121201/20130101/g' filenameThe -i flag allow you to do the sequence that you want in the file

And also here you can find...
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 05:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy